Skip to content

Perform Manual Backport Audit #284

Perform Manual Backport Audit

Perform Manual Backport Audit #284

name: Perform Manual Backport Audit
on:
workflow_dispatch:
schedule:
- cron: '0 18 * * 1'
permissions:
contents: read
jobs:
audit:
name: Perform Manual Backport Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: lts/*
- name: Install Dependencies
run: yarn install --immutable
- name: Check PRs Needing Manual Backport
run: node action-audit.js
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
UNRELEASED_GITHUB_APP_CREDS: ${{ secrets.UNRELEASED_GITHUB_APP_CREDS }}
ACTION_TYPE: 'needs-manual'