chore(container): pin image busybox to f7ca5a3 - autoclosed #2673
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
--- | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Pull Request Labeler | |
on: | |
workflow_dispatch: | |
pull_request_target: | |
branches: | |
- main | |
types: | |
- opened | |
- synchronize | |
jobs: | |
labeler: | |
name: Pull Request Labeler | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/marketplace/actions/harden-runner | |
- name: Harden Runner | |
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4 | |
with: | |
egress-policy: audit | |
# https://github.com/marketplace/actions/create-github-app-token | |
- name: Generate Token | |
uses: actions/create-github-app-token@136412a57a7081aa63c935a2cc2918f76c34f514 # v1.11.2 | |
id: app-token | |
with: | |
app-id: "${{ secrets.BOT_APP_ID }}" | |
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
# https://github.com/marketplace/actions/labeler | |
- name: Labeler | |
uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0 | |
with: | |
configuration-path: .github/labeler.yaml | |
repo-token: "${{ steps.app-token.outputs.token }}" |