We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ade316a commit afd43b7Copy full SHA for afd43b7
1 file changed
examples/noneflow-registry.yml
@@ -5,6 +5,8 @@ on:
5
types: [opened, reopened, edited]
6
issue_comment:
7
types: [created]
8
+ pull_request_target:
9
+ types: [closed]
10
11
concurrency:
12
group: ${{ github.workflow }}-${{ github.event.issue.number || github.run_id }}
@@ -28,7 +30,14 @@ jobs:
28
30
private_key: ${{ secrets.APP_KEY }}
29
31
32
- name: Checkout Code
- uses: actions/checkout@v4
33
+ if: contains(github.event.issue.labels.*.name, 'Config')
34
+ uses: actions/checkout@v6
35
+ with:
36
+ token: ${{ steps.generate-token.outputs.token }}
37
+
38
+ - name: Checkout Code
39
+ if: contains(github.event.issue.labels.*.name, 'Remove')
40
41
with:
42
token: ${{ steps.generate-token.outputs.token }}
43
repository: nonebot/nonebot2
0 commit comments