Skip to content

Commit

Permalink
meta: automate description requests when notable change label is added
Browse files Browse the repository at this point in the history
  • Loading branch information
danielleadams committed Mar 19, 2023
1 parent f9c4e3a commit d9f3709
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/comment-labeled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ env:
If it should remain open, please leave a comment explaining why it should remain open.
FAST_TRACK_MESSAGE: Fast-track has been requested by @${{ github.actor }}. Please 👍 to approve.
NOTABLE_CHANGE_MESSAGE: |
The notable-changes label has been added by @${{ github.actor }}.
Please include your text below if you'd like to include a more detailed summary in the changelog.
```
[Insert here]
```
The ${{ github.event.label.url }} label has been added by @${{ github.actor }}.
Please suggest a text for the release notes if you'd like to include a more detailed summary,
then proceed to update the PR description with the text or a link to the notable change
suggested text comment.
permissions:
contents: read
Expand Down Expand Up @@ -48,7 +48,11 @@ jobs:
notable-change:
permissions:
pull-requests: write
<<<<<<< HEAD
if: github.repository == 'danielleadams/node' && github.event_name == 'pull_request_target' && github.event.label.name == 'notable-change'
=======
if: github.repository == 'nodejs/node' && github.event_name == 'pull_request_target' && github.event.label.name == 'notable-change'
>>>>>>> 01d64512a2 (meta: automate description requests when notable change label is added)
runs-on: ubuntu-latest
steps:
- name: Add notable change description
Expand Down

0 comments on commit d9f3709

Please sign in to comment.