Text to describe set up that may be necessary to use the Emacs text editor #8
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@v4 | |
with: | |
name: pr | |
path: ./pr | |