This repository has been archived by the owner on Jul 10, 2024. It is now read-only.
Update data link to refer to current repo #6
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: "Bot: Send Close Pull Request Signal" | |
on: | |
pull_request: | |
types: | |
[closed] | |
jobs: | |
send-close-signal: | |
name: "Send closing signal" | |
runs-on: ubuntu-latest | |
if: ${{ github.event.action == 'closed' }} | |
steps: | |
- name: "Create PRtifact" | |
run: | | |
mkdir -p ./pr | |
printf ${{ github.event.number }} > ./pr/NUM | |
- name: Upload Diff | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pr | |
path: ./pr | |