Skip to content

⬆️upgrade(ci): Bump actions/stale from 8.0.0 to 9.0.0 in /.github/workflows #216

⬆️upgrade(ci): Bump actions/stale from 8.0.0 to 9.0.0 in /.github/workflows

⬆️upgrade(ci): Bump actions/stale from 8.0.0 to 9.0.0 in /.github/workflows #216

Workflow file for this run

# SPDX-FileCopyrightText: 2022 WebReady Projects <https://github.com/wr-projects/>
#
# SPDX-License-Identifier: MIT
---
name: Pipeline - Automatic Rebase
on:
issue_comment:
types: [created]
permissions:
contents: read
issues: write
jobs:
# More info:
rebase:
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
runs-on: ubuntu-latest
steps:
# More info: https://github.com/step-security/harden-runner.
- name: Harden Runner
id: harden_runner
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895
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_REBASEISSUEBOT }}
application_private_key: ${{ secrets.PEM_REBASEISSUEBOT }}
# More info: https://github.com/actions/checkout.
- name: Checkout & Authentication
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
with:
token: ${{ steps.get_token.outputs.token }}
persist-credentials: false
fetch-depth: 0
- name: Automatic Rebase
uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691
env:
GITHUB_TOKEN: ${{ steps.get_token.outputs.token }}