Skip to content
Snippets Groups Projects
Unverified Commit 49df2c28 authored by Dan Callahan's avatar Dan Callahan Committed by GitHub
Browse files

Fix GitHub Actions lint for newsfragments (#10069)


* Fix GitHub Actions lint for newsfragments

Signed-off-by: default avatarDan Callahan <danc@element.io>
parent f95e7a03
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,13 @@ jobs: ...@@ -34,7 +34,13 @@ jobs:
if: ${{ github.base_ref == 'develop' || contains(github.base_ref, 'release-') }} if: ${{ github.base_ref == 'develop' || contains(github.base_ref, 'release-') }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# Note: This and the script can be simplified once we drop Buildkite. See:
# https://github.com/actions/checkout/issues/266#issuecomment-638346893
# https://github.com/actions/checkout/issues/416
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- uses: actions/setup-python@v2 - uses: actions/setup-python@v2
- run: pip install tox - run: pip install tox
- name: Patch Buildkite-specific test script - name: Patch Buildkite-specific test script
......
Fix GitHub Actions lint for newsfragments.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment