diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 0000000000..b9e4854914 --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,14 @@ +# Hopefully use this for the "required status checks" +name: Status Checks Passed +on: + workflow_run: + workflows: ["CI"] + branches-ignore: ["main"] + types: + - completed +jobs: + success: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4