Skip to content

Commit

Permalink
Merge 'stable' into 'minor-next'
Browse files Browse the repository at this point in the history
  • Loading branch information
pmmp-admin-bot[bot] committed Nov 23, 2024
2 parents 8b6adf8 + 5b72f20 commit a53b011
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pr-remove-waiting-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Remove waiting label from PRs

on:
pull_request_target:
types: synchronize

jobs:
delabel:
name: Remove label
runs-on: ubuntu-latest

steps:
- name: Remove label
uses: actions/github-script@v7
with:
github-token: ${{ github.token }}
script: |
const [owner, repo] = context.payload.repository.full_name.split('/');
await github.rest.issues.removeLabel({
owner: owner,
repo: repo,
issue_number: context.payload.number,
name: "Status: Waiting on Author",
});

0 comments on commit a53b011

Please sign in to comment.