mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
Add changelog label to merged PRs (#3664)
This commit is contained in:
parent
287edb755d
commit
3d7ff7a149
26
.github/workflows/add_changelog_label.yaml
vendored
Normal file
26
.github/workflows/add_changelog_label.yaml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
name: Add changelog label to merged PR
|
||||
on:
|
||||
pull_request:
|
||||
types: [closed]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: github.event.pull_request.merged
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Apply label
|
||||
uses: actions/github-script@0.4.0
|
||||
with:
|
||||
github-token: ${{secrets.GITHUB_TOKEN}}
|
||||
script: |
|
||||
const is_changelog_label = (label) => label.name.startsWith('Changelog Entry: ');
|
||||
if (context.payload.pull_request.labels.some(is_changelog_label)) {
|
||||
console.log('Issue already has Changelog Entry label, skipping...');
|
||||
return;
|
||||
}
|
||||
github.issues.addLabels({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
labels: ['Changelog Entry: Pending']
|
||||
});
|
||||
Loading…
x
Reference in New Issue
Block a user