Automatic changelog update #145
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The PAT does not have the correct permissions to make this work; Eventually we'll want to replace this workflow with a proper bot | |
| # name: "Labels: Approved" | |
| # on: | |
| # pull_request_review: | |
| # types: [submitted] | |
| # jobs: | |
| # add_label: | |
| # # Change the repository name after you've made sure the team name is correct for your fork! | |
| # if: ${{ (github.repository == 'DeltaV-Station/Delta-v') && (github.event.review.state == 'APPROVED') }} | |
| # permissions: | |
| # contents: read | |
| # pull-requests: write | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: tspascoal/get-user-teams-membership@v3 | |
| # id: checkUserMember | |
| # with: | |
| # username: ${{ github.actor }} | |
| # team: "maintainers" | |
| # GITHUB_TOKEN: ${{ secrets.LABELER_PAT }} | |
| # - if: ${{ steps.checkUserMember.outputs.isTeamMember == 'true' }} | |
| # uses: actions-ecosystem/action-add-labels@v1 | |
| # with: | |
| # labels: "S: Approved" |