Bug: incorrect status code shown on log #95
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: π€ Automatic Labeler | |
on: | |
issues: | |
types: [opened, labeled, unlabeled, reopened] | |
pull_request_target: | |
types: [opened, labeled, unlabeled, synchronize, reopened] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
labeler: | |
name: π Label Issues and Pull Requests | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Add Labels | |
uses: actions/labeler@v5 | |
- name: π΅ Check Conflicts | |
uses: mschilde/auto-label-merge-conflicts@master | |
with: | |
CONFLICT_LABEL_NAME: 'conflict' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MAX_RETRIES: 5 | |
WAIT_MS: 5000 |