⬆️upgrade(ci): Bump actions/setup-node from 4.0.3 to 4.0.4 in /.github/workflows #111
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
# SPDX-FileCopyrightText: 2022 WebReady Projects <https://github.com/wr-projects/> | |
# | |
# SPDX-License-Identifier: MIT | |
--- | |
name: Pipeline - Auto approve | |
on: | |
pull_request_target: | |
types: [ opened ] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
auto-approve: | |
runs-on: ubuntu-latest | |
if: ${{ !startsWith(github.head_ref, 'dependabot/') }} | |
steps: | |
# More info: https://github.com/step-security/harden-runner. | |
- name: Harden Runner | |
id: harden_runner | |
uses: step-security/harden-runner@c8454efe5d0bdefd25384362fe217428ca277d57 | |
with: | |
egress-policy: audit | |
# More info: https://github.com/peter-murray/workflow-application-token-action. | |
- name: Get token | |
id: get_token | |
uses: peter-murray/workflow-application-token-action@8e1ba3bf1619726336414f1014e37f17fbadf1db | |
with: | |
application_id: ${{ secrets.ID_CHECKDEPSBOT }} | |
application_private_key: ${{ secrets.PEM_CHECKDEPSBOT }} | |
# More info: https://github.com/actions/checkout. | |
- name: Checkout & Authentication | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
# More info: https://github.com/hmarr/auto-approve-action. | |
- name: Autoapprove | |
uses: hmarr/auto-approve-action@de8ae18c173c131e182d4adf2c874d8d2308a85b | |
with: | |
github-token: ${{ steps.get_token.outputs.token }} | |
review-message: "Auto approved automated PR" |