forked from syslog-ng/syslog-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 1.3 KB
/
comment-on-version-bump-pr.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
###########################################################################
#
# If there are new commits on master, while we have a version bump PR open,
# this job automatically comments on the PR, mentioning the new commits,
# so we will not forget to follow-up the changes.
#
###########################################################################
name: Comment on version bump PR
on:
push:
branches:
- master
jobs:
comment-on-version-bump-pr:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMMIT_URL: https://github.com/${{ github.repository_owner }}/syslog-ng/commit/${{ github.sha }}
steps:
- name: Checkout syslog-ng source
uses: actions/checkout@v3
- name: Check if version bump PR is open
run: |
. .github/workflows/gh-tools.sh
PR_NUMBER=$(gh pr list --state "open" --label "version-bump" --json "number" --jq ".[0].number")
[ -z ${PR_NUMBER} ] && echo "No version bump PR is open. Skipping."
gh_export PR_NUMBER
- name: Comment
if: env.PR_NUMBER != ''
run: |
COMMENT="There are new commits (${COMMIT_URL}) on master. Please follow-up any necessary changes."
gh pr comment \
"${PR_NUMBER}" \
--body "${COMMENT}"