File: pull_request_opened.yml

package info (click to toggle)
node-graphql 16.8.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,376 kB
  • sloc: javascript: 1,492; sh: 20; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: PullRequestOpened
on:
  pull_request:
    types: [opened]
jobs:
  save-github-event:
    name: "Save `github.event` as an artifact to use in subsequent 'workflow_run' actions"
    runs-on: ubuntu-latest
    steps:
      - name: Upload event.json
        uses: actions/upload-artifact@v2
        with:
          name: event.json
          path: ${{ github.event_path }}