diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..24ab1b2 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,24 @@ +name: CI + +on: + push: + branches: "*" + pull_request: + # https://developer.github.com/webhooks/event-payloads/#pull_request + types: [edited, synchronize] + branches: "*" + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run a one-line script + run: | + echo EDITED! + # env + echo "- in ${{ github.event.action }}!" + if: github.event_name == 'pull_request' && github.event.action == 'edited' + - name: Run a multi-line script + run: | + echo Default