This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
feat(github-action)!: Update peter-evans/create-or-update-comment action to v4 #2934
Workflow file for this run
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: Meta - Labeler | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- main | |
jobs: | |
labeler: | |
name: Labeler | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate Token | |
uses: tibdex/github-app-token@v2 | |
id: generate-token | |
with: | |
app_id: "${{ secrets.BOT_APP_ID }}" | |
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
- name: Labeler | |
uses: actions/labeler@v5 | |
with: | |
configuration-path: .github/labeler.yaml | |
repo-token: "${{ steps.generate-token.outputs.token }}" |