Remove hourly as a valid frequency for raw data
#533
Workflow file for this run
This file contains hidden or 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: CI Workflow | |
| on: | |
| push: | |
| branches: [dev, main] | |
| pull_request: | |
| workflow_dispatch: | |
| inputs: | |
| ref: | |
| description: "the 'git ref' or 'git ref-name' (e.g., 'refs/tags/v2023.10.0' or 'v2023.10.0')" | |
| required: false | |
| type: string | |
| concurrency: | |
| # Only cancel in-progress runs for pull_request events, this prevents cancelling workflows against main or tags | |
| # A pull_request will reuse the same group thus enabling cancelation, all others receive a unique run_id | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| id-token: write | |
| contents: write | |
| pull-requests: read | |
| packages: write | |
| statuses: write | |
| jobs: | |
| check-r-code: | |
| uses: ./.github/workflows/R-CMD-check.yml | |
| name: Check R code | |
| secrets: inherit | |
| manifests: | |
| needs: [check-r-code] | |
| if: github.event_name == 'push' | |
| uses: ./.github/workflows/update-manifests.yml | |
| secrets: inherit | |
| # The extensions job in extensions.yml will aslo run on pull requests, but only to validate the build | |
| extensions: | |
| needs: [check-r-code, manifests] | |
| if: github.event_name == 'push' | |
| uses: ./.github/workflows/extensions.yml | |
| secrets: inherit |