Fix Unable to get file size
when dataset has no protocol attribute
#1124
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: Merge Gatekeeper | |
on: | |
pull_request: | |
branches: | |
- main | |
env: | |
TIMEOUT: 3600 | |
INTERVAL: 30 | |
jobs: | |
merge-gatekeeper: | |
runs-on: ubuntu-latest | |
# Restrict permissions of the GITHUB_TOKEN. | |
# Docs: https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs | |
permissions: | |
checks: read | |
statuses: read | |
steps: | |
- name: Run Merge Gatekeeper | |
# NOTE: v1 is updated to reflect the latest v1.x.y. Please use any tag/branch that suits your needs: | |
# https://github.com/upsidr/merge-gatekeeper/tags | |
# https://github.com/upsidr/merge-gatekeeper/branches | |
uses: upsidr/merge-gatekeeper@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
timeout: ${{ env.TIMEOUT }} | |
interval: ${{ env.INTERVAL }} | |
ignored: 'ci/circleci: win_unit_tests-3.9,ci/circleci: win_unit_tests-3.10,ci/circleci: win_unit_tests-3.8,ci/circleci: unit_tests-3.10,ci/circleci: unit_tests-3.8,ci/circleci: unit_tests-3.9,ci/circleci: win_e2e_tests-3.10,ci/circleci: win_e2e_tests-3.9,ci/circleci: win_e2e_tests-3.8,ci/circleci: e2e_tests-3.8,ci/circleci: e2e_tests-3.9,ci/circleci: e2e_tests-3.10,ci/circleci: lint-3.8,ci/circleci: lint-3.9,ci/circleci: lint-3.10,ci/circleci: javascript_lint_and_tests,ci/circleci: check-updated-files,ci/circleci: all_circleci_checks_succeeded,CircleCI Pipeline' |