Add missing actions and scripts #76
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: Validate Patch | |
on: | |
pull_request: | |
branches: [ "main" ] | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
validate-patch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Display info | |
run: | | |
pwd | |
tree -a -I '.git' | |
echo "Action: ${{ github.event.action }}" | |
echo "Sender: ${{ github.event.sender.login }}" | |
git status | |
git log origin/main..HEAD | |
- name: Validate files | |
run: sleep 5 |