diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-11-05 13:12:37 -0600 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2021-11-05 13:12:37 -0600 |
| commit | d3d9311f486e2a33b40cf0db7958cf5faaf22124 (patch) | |
| tree | 4e8eeaa52b523511a6ca6ddefa821f05c9220f61 /.github | |
| parent | 17264a6020774ac50b48bf5fe61ca9a3b1ec4d19 (diff) | |
| parent | b64d9bcd401d68e12b7e0ef2e2fdb55b895e211a (diff) | |
Merge remote-tracking branch 'upstream/master' into client-logger
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/openapi.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/openapi.yml b/.github/workflows/openapi.yml index 6e370819a..b81875d2c 100644 --- a/.github/workflows/openapi.yml +++ b/.github/workflows/openapi.yml @@ -3,7 +3,7 @@ on: push: branches: - master - pull_request: + pull_request_target: jobs: openapi-head: @@ -12,6 +12,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v2 + with: + ref: ${{ github.head_ref }} - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: @@ -53,7 +55,7 @@ jobs: openapi-diff: name: OpenAPI - Difference - if: ${{ github.event_name == 'pull_request' }} + if: ${{ github.event_name == 'pull_request_target' }} runs-on: ubuntu-latest needs: - openapi-head |
