File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2- _commit : ' 2944179 '
2+ _commit : e35a7cb
33_src_path : gh:athackst/ci
44bump_script_path : .github/bump.sh
55release_template : " # Get it\n\n ## Python\n\n Install it with pip\n\n ```bash\n \
Original file line number Diff line number Diff line change 1+ # This file is generated from athackst/ci/template/.github/workflows/pr_automerge.yml.jinja.
2+ # Do not edit directly; update the template instead.
3+
4+ name : PR Automerge
5+
6+ on :
7+ pull_request_target :
8+ types :
9+ - labeled
10+ - unlabeled
11+
12+ jobs :
13+ pr-automerge :
14+ permissions :
15+ contents : write
16+ pull-requests : write
17+ checks : read
18+ uses : athackst/ci/.github/workflows/automerge.yml@main
19+ secrets :
20+ token : ${{ secrets.CI_BOT_TOKEN }}
Original file line number Diff line number Diff line change 44name : PR Bot
55
66on :
7- pull_request :
8- pull_request_target :
7+ workflow_dispatch :
98
109jobs :
11- pr-label :
12- permissions :
13- contents : read
14- pull-requests : write
15- uses : athackst/ci/.github/workflows/pr_labeler.yml@main
16- secrets : inherit
17-
18- pr-automerge :
19- if : ${{ github.event_name == 'pull_request_target' }}
20- needs : pr-label
21- permissions :
22- contents : write
23- pull-requests : write
24- checks : read
25- uses : athackst/ci/.github/workflows/automerge.yml@main
26- secrets :
27- token : ${{ secrets.CI_BOT_TOKEN }}
28-
29- pr-bump :
30- if : ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.event.pull_request.user.login != 'dependabot[bot]' }}
31- needs : pr-label
32- permissions :
33- contents : write
34- pull-requests : write
35- uses : athackst/ci/.github/workflows/pr_bump.yml@main
36- with :
37- bump-script : .github/bump.sh
38- secrets :
39- token : ${{ secrets.CI_BOT_TOKEN }}
10+ deprecated :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Deprecated
14+ run : |
15+ echo "Use labeler.yml, automerge.yml, and bump.yml instead of pr_bot.yml."
Original file line number Diff line number Diff line change 1+ # This file is generated from athackst/ci/template/.github/workflows/pr_bump.yml.jinja.
2+ # Do not edit directly; update the template instead.
3+
4+ name : PR Bump
5+
6+ on :
7+ pull_request :
8+ types :
9+ - labeled
10+ - unlabeled
11+
12+ jobs :
13+ pr-bump :
14+ if : ${{ github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' }}
15+ permissions :
16+ contents : write
17+ pull-requests : write
18+ uses : athackst/ci/.github/workflows/bump.yml@main
19+ with :
20+ bump-script : .github/bump.sh
21+ secrets :
22+ token : ${{ secrets.CI_BOT_TOKEN }}
Original file line number Diff line number Diff line change 1+ # This file is generated from athackst/ci/template/.github/workflows/pr_labeler.yml.jinja.
2+ # Do not edit directly; update the template instead.
3+
4+ name : PR Labeler
5+
6+ on :
7+ pull_request_target :
8+
9+ jobs :
10+ pr-label :
11+ permissions :
12+ contents : read
13+ pull-requests : write
14+ uses : athackst/ci/.github/workflows/labeler.yml@main
15+ secrets :
16+ token : ${{ secrets.CI_BOT_TOKEN }}
You can’t perform that action at this time.
0 commit comments