meta: bump actions/upload-artifact from 4.3.3 to 4.3.6 #92
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: Pull Request CI Label | |
on: | |
pull_request_target: | |
branches: | |
- main | |
types: | |
- labeled | |
defaults: | |
run: | |
# This ensures that the working directory is the root of the repository | |
working-directory: ./ | |
permissions: | |
# This permission is required by `actions-ecosystem/action-remove-label` | |
pull-requests: write | |
jobs: | |
# This Job removes the `github_actions:pull-request` label after it got applied | |
# which allows people with write access to the repository to easily reapply the label if they need to trigger | |
# this Workflow again | |
remove_pull_request_label: | |
name: Remove Pull Request Label | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1 | |
with: | |
egress-policy: audit | |
- name: Remove GitHub Actions Label | |
uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.3.0 | |
with: | |
labels: github_actions:pull-request |