-
Notifications
You must be signed in to change notification settings - Fork 128
60 lines (50 loc) · 1.67 KB
/
issue_comment_edited.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Issue Comment Edited
on:
issue_comment:
types: [edited]
concurrency:
group: ${{ github.workflow }}-${{ github.event.comment.id }}
cancel-in-progress: true
jobs:
pr-welcome-edited:
if: ${{ github.event.issue.pull_request }}
runs-on: ubuntu-22.04
steps:
- name: Create app token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.PR_APP_ID }}
private-key: ${{ secrets.PR_APP_KEY }}
- name: Checkout main
uses: actions/checkout@v4
with:
sparse-checkout: .github/utilities
- name: Setup Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install PyGithub
run: pip install -Uq PyGithub
- name: Process comment edit
id: label_out
run: python .github/utilities/pr_welcome_edited.py
env:
CONTEXT_GITHUB: ${{ toJson(github) }}
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
- if: ${{ steps.label_out.outputs.empty_commit == 'true' }}
name: Checkout head
uses: actions/checkout@v4
with:
repository: ${{ steps.label_out.outputs.repo }}
ref: ${{ steps.label_out.outputs.branch }}
token: ${{ steps.app-token.outputs.token }}
- if: ${{ steps.label_out.outputs.empty_commit == 'true' }}
name: Push empty commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Empty commit for CI
commit_user_name: aeon-actions-bot[bot]
commit_options: --allow-empty
create_branch: false
skip_dirty_check: true