clarification : be more restrictive in git commits in CI section #6
This file contains hidden or 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-22.04 | |
| 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 |