Update actions/setup-node action to v4 #2167
This file contains 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
name: "Maintenance" | |
on: | |
# So that PRs touching the same files as the push are updated | |
push: | |
# So that the `dirtyLabel` is removed if conflicts are resolved | |
pull_request: | |
types: [synchronize] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check if prs are dirty | |
uses: eps1lon/actions-label-merge-conflict@releases/2.x | |
with: | |
dirtyLabel: "PR: needs rebase" | |
removeOnDirtyLabel: "PR: ready to ship" | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" |