Skip to content

Attempt to fix auto-approval CI workflow #2

Attempt to fix auto-approval CI workflow

Attempt to fix auto-approval CI workflow #2

Workflow file for this run

name: Auto-Approve Safe PRs
on: pull_request
jobs:
auto-approve:
runs-on: ubuntu-latest
steps:
- name: Save the PR number in an artifact
shell: bash
env:
PR_NUM: ${{ github.event.number }}
run: echo $PR_NUM > pr_num.txt
- name: Upload the PR number
uses: actions/upload-artifact@v2
with:
name: pr_num
path: ./pr_num.txt