Add HTTP middleware to rule-evaluator #106
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
name: Auto Assign PR | |
# This job triggers privileged auto-assign job in secure manner. | |
# See: https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
jobs: | |
schedule: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pass parameters to Auto Assign job | |
run: | | |
mkdir -p ./pr | |
echo ${{ github.event.number }} > ./pr/NR | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: auto-assign-pr | |
path: pr/ | |
- run: echo "Scheduled!" |