diff --git a/.github/workflows/build-publish.yml b/.github/workflows/build-publish.yml index 8b1f888..24b1e89 100644 --- a/.github/workflows/build-publish.yml +++ b/.github/workflows/build-publish.yml @@ -19,10 +19,10 @@ on: description: 'The ARN of the AWS role to assume for publication' type: string required: true - run-group: - description: 'The run group to use for the actions' + run-label: + description: 'The run label to use for the actions' type: string - default: ${{ vars.RUN_GROUP }} + default: 'ubuntu-latest' permissions: contents: read @@ -32,8 +32,7 @@ permissions: jobs: build-publish: name: Build - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 1972f0f..8be4b7f 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -55,10 +55,10 @@ on: description: 'The ARN of the AWS role to assume for the monitoring deployment' type: string default: ${{ vars.AWS_ROLE_MONITORING }} - run-group: - description: 'The run group to use for the actions' + run-label: + description: 'The run label to use for the actions' type: string - default: ${{ vars.RUN_GROUP }} + default: 'ubuntu-latest' concurrency: cd-${{ inputs.stage }} @@ -82,7 +82,7 @@ jobs: grafana-workspace-name: ${{ inputs.grafana-workspace-name }} tf-directory: ${{ inputs.tf-directory }} tf-variables: ${{ inputs.tf-variables }} - run-group: ${{ inputs.run-group }} + run-label: ${{ inputs.run-label }} deploy-app: name: Deploy App @@ -97,4 +97,4 @@ jobs: stage-url: ${{ inputs.stage-url }} aws-role-arn: ${{ inputs.aws-role-arn }} aws-region: ${{ inputs.aws-region }} - run-group: ${{ inputs.run-group }} + run-label: ${{ inputs.run-label }} diff --git a/.github/workflows/ci-check-app.yml b/.github/workflows/ci-check-app.yml index 284cb33..9f38e53 100644 --- a/.github/workflows/ci-check-app.yml +++ b/.github/workflows/ci-check-app.yml @@ -43,10 +43,10 @@ on: description: 'The environment variables to set for the tests' type: string default: '' - run-group: - description: 'The run group to use for the actions' + run-label: + description: 'The run label to use for the actions' type: string - default: ${{ vars.RUN_GROUP }} + default: 'ubuntu-latest' env: RUST_BACKTRACE: ${{ inputs.rust-backtrace }} @@ -57,8 +57,7 @@ permissions: jobs: clippy: name: Clippy - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - name: Checkout uses: actions/checkout@v4 @@ -89,8 +88,7 @@ jobs: formatting: name: Formatting - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - name: Checkout uses: actions/checkout@v4 @@ -114,8 +112,7 @@ jobs: tests: name: Unit Tests - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - name: Checkout uses: actions/checkout@v4 @@ -150,8 +147,7 @@ jobs: fail-fast: false matrix: element: ${{ fromJson(inputs.test-suites) }} - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - name: Checkout uses: actions/checkout@v4 @@ -189,8 +185,7 @@ jobs: unused-dependencies: name: Unused Dependencies - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - name: Checkout uses: actions/checkout@v4 @@ -214,8 +209,7 @@ jobs: license: name: Licenses - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - uses: actions/checkout@v4 - uses: EmbarkStudios/cargo-deny-action@v1 diff --git a/.github/workflows/ci-check-infra.yml b/.github/workflows/ci-check-infra.yml index 54d6f04..6d1175b 100644 --- a/.github/workflows/ci-check-infra.yml +++ b/.github/workflows/ci-check-infra.yml @@ -11,10 +11,10 @@ on: description: 'The directory containing the Terraform files' type: string default: ${{ vars.TF_DIRECTORY }} - run-group: - description: 'The run group to use for the actions' + run-label: + description: 'The run label to use for the actions' type: string - default: ${{ vars.RUN_GROUP }} + default: 'ubuntu-latest' secrets: TF_API_TOKEN: required: true @@ -29,8 +29,7 @@ env: jobs: check-fmt: name: Formatting - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - name: Checkout uses: actions/checkout@v4 @@ -49,8 +48,7 @@ jobs: validate: name: Validate - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - name: Checkout uses: actions/checkout@v4 @@ -79,8 +77,7 @@ jobs: tfsec: name: TFSec - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - name: Checkout uses: actions/checkout@v4 @@ -111,8 +108,7 @@ jobs: tflint: name: TFLint - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/ci-plan-infra.yml b/.github/workflows/ci-plan-infra.yml index 789ae0c..159edac 100644 --- a/.github/workflows/ci-plan-infra.yml +++ b/.github/workflows/ci-plan-infra.yml @@ -35,10 +35,10 @@ on: description: 'The ARN of the AWS role to assume for the monitoring deployment' type: string default: ${{ vars.AWS_ROLE_MONITORING }} - run-group: - description: 'The run group to use for the actions' + run-label: + description: 'The run label to use for the actions' type: string - default: ${{ vars.RUN_GROUP }} + default: 'ubuntu-latest' secrets: TF_API_TOKEN: required: true @@ -56,8 +56,7 @@ env: jobs: plan: name: Plan `${{ inputs.stage }}` - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} environment: name: ${{ inputs.stage }} url: ${{ inputs.stage-url }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b988623..50a5840 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,10 +89,10 @@ on: description: 'The ARN of the AWS role to assume for the monitoring deployment' type: string default: ${{ vars.AWS_ROLE_MONITORING }} - run-group: - description: 'The run group to use for the actions' + run-label: + description: 'The run label to use for the actions' type: string - default: ${{ vars.RUN_GROUP }} + default: 'ubuntu-latest' secrets: TF_API_TOKEN: required: true @@ -118,7 +118,7 @@ jobs: use-sccache: ${{ inputs.rust-use-sccache }} use-postgresql: ${{ inputs.rust-use-postgresql }} test-env-vars: ${{ inputs.rust-test-env-vars }} - run-group: ${{ inputs.run-group }} + run-label: ${{ inputs.run-label }} check-infra: name: Check Infra @@ -128,7 +128,7 @@ jobs: with: stage: staging tf-directory: ${{ inputs.tf-directory }} - run-group: ${{ inputs.run-group }} + run-label: ${{ inputs.run-label }} plan-infra: name: Plan Infra ❱❱ ${{ matrix.stage.name }} @@ -148,4 +148,4 @@ jobs: tf-variables: ${{ inputs.tf-variables }} aws-region: ${{ inputs.aws-region }} aws-role-monitoring-arn: ${{ inputs.aws-role-monitoring-arn }} - run-group: ${{ inputs.run-group }} + run-label: ${{ inputs.run-label }} diff --git a/.github/workflows/deploy-app.yml b/.github/workflows/deploy-app.yml index 904842b..ab6f0a3 100644 --- a/.github/workflows/deploy-app.yml +++ b/.github/workflows/deploy-app.yml @@ -31,10 +31,10 @@ on: description: 'The ARN of the AWS role to assume for the deployment' type: string required: true - run-group: - description: 'The run group to use for the actions' + run-label: + description: 'The run label to use for the actions' type: string - default: ${{ vars.RUN_GROUP }} + default: 'ubuntu-latest' concurrency: deploy-${{ inputs.stage }} @@ -45,8 +45,7 @@ permissions: jobs: deploy-app: name: Deploy App `${{ inputs.stage }}` - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} environment: name: ${{ inputs.stage }} url: ${{ inputs.stage-url }} diff --git a/.github/workflows/deploy-infra.yml b/.github/workflows/deploy-infra.yml index ab3cd56..07adfd0 100644 --- a/.github/workflows/deploy-infra.yml +++ b/.github/workflows/deploy-infra.yml @@ -35,10 +35,10 @@ on: description: 'The ARN of the AWS role to assume for the monitoring deployment' type: string default: ${{ vars.AWS_ROLE_MONITORING }} - run-group: - description: 'The run group to use for the actions' + run-label: + description: 'The run label to use for the actions' type: string - default: ${{ vars.RUN_GROUP }} + default: 'ubuntu-latest' secrets: TF_API_TOKEN: required: true @@ -56,8 +56,7 @@ env: jobs: apply-infra: name: Apply Infra `${{ inputs.stage }}` - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} environment: name: ${{ inputs.stage }} url: ${{ inputs.stage-url }} diff --git a/.github/workflows/release-app.yml b/.github/workflows/release-app.yml index 3cfaf53..5be58ce 100644 --- a/.github/workflows/release-app.yml +++ b/.github/workflows/release-app.yml @@ -16,10 +16,10 @@ on: description: 'The AWS region to publish to' type: string default: ${{ vars.AWS_REGION }} - run-group: - description: 'The run group to use for the actions' + run-label: + description: 'The run label to use for the actions' type: string - default: ${{ vars.RUN_GROUP }} + default: 'ubuntu-latest' secrets: RELEASE_PAT: required: true @@ -36,8 +36,7 @@ permissions: jobs: update_version: name: Update Version - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - name: Checkout uses: actions/checkout@v4 @@ -57,8 +56,7 @@ jobs: display_version: name: Version ➠ ${{ needs.update_version.outputs.version }} needs: [ update_version ] - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - run: echo "Version = ${{ needs.update_version.outputs.version }}" @@ -75,4 +73,4 @@ jobs: image-name: ${{ inputs.image-name }} aws-region: ${{ inputs.aws-region }} aws-role-arn: ${{ matrix.env.role }} - run-group: ${{ inputs.run-group }} + run-label: ${{ inputs.run-label }} diff --git a/.github/workflows/release-get_deployed_version.yml b/.github/workflows/release-get_deployed_version.yml index 990fbd6..feed64a 100644 --- a/.github/workflows/release-get_deployed_version.yml +++ b/.github/workflows/release-get_deployed_version.yml @@ -38,10 +38,10 @@ on: type: string default: '-' - run-group: - description: 'The run group to use for the actions' + run-label: + description: 'The run label to use for the actions' type: string - default: ${{ vars.RUN_GROUP }} + default: 'ubuntu-latest' outputs: version: @@ -82,8 +82,7 @@ jobs: get_version: name: Lookup ECS needs: [ get_names ] - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - name: Get task definition from ECS id: get_task @@ -99,7 +98,6 @@ jobs: display_version: name: Version ➠ ${{ needs.get_version.outputs.version }} needs: [ get_version ] - runs-on: - group: ${{ inputs.run-group }} + runs-on: ${{ inputs.run-label }} steps: - run: echo "Version = ${{ needs.get_version.outputs.version }}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 83af5bf..f251161 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,10 +56,10 @@ on: type: string default: ${{vars.AWS_ROLE_PROD}} - run-group: - description: 'The run group to use for the actions' + run-label: + description: 'The run label to use for the actions' type: string - default: ${{ vars.RUN_GROUP }} + default: 'ubuntu-latest' secrets: RELEASE_PAT: required: true @@ -83,7 +83,7 @@ jobs: publish-envs: ${{ inputs.publish-envs }} image-name: ${{ inputs.image-name }} aws-region: ${{ inputs.aws-region }} - run-group: ${{ inputs.run-group }} + run-label: ${{ inputs.run-label }} get_deployed_version: name: Lookup Version @@ -97,14 +97,13 @@ jobs: task-name-stage: ${{ inputs.task-name-stage }} aws-region: ${{ inputs.aws-region }} aws-role-arn: ${{ inputs.aws-role-arn }} - run-group: ${{ inputs.run-group }} + run-label: ${{ inputs.run-label }} select_version: name: Select Version needs: [ release_app, get_deployed_version ] if: ${{ always() && !cancelled() && !failure() }} - runs-on: - group: ${{ vars.RUN_GROUP }} + runs-on: ${{ inputs.run-label }} steps: - name: Select target version id: select_version diff --git a/docs/build-publish.md b/docs/build-publish.md index 2d9893a..3a26aa7 100644 --- a/docs/build-publish.md +++ b/docs/build-publish.md @@ -34,7 +34,7 @@ graph TB | `image-name` | `string` | The name of the image to publish | `${{ vars.IMAGE_NAME }}` | | `aws-region` | `string` | The AWS region to publish to | `${{ vars.AWS_REGION }}` | | `aws-role-arn` | `string` | The ARN of the AWS role to assume for publication | `--` | -| `run-group` | `string` | The run group to use for the actions | `${{ vars.RUN_GROUP }}` | +| `run-label` | `string` | The run label to use for the actions | `ubuntu-latest` | ## Outputs @@ -50,7 +50,6 @@ graph TB ## Repository Variables -- `RUN_GROUP` (only if `inputs.run-group` is not set) - `AWS_REGION` (only if `inputs.aws-region` is not set) - `IMAGE_NAME` (only if `inputs.image-name` is not set) diff --git a/docs/cd.md b/docs/cd.md index 44eb4b3..7e2a4b4 100644 --- a/docs/cd.md +++ b/docs/cd.md @@ -39,7 +39,7 @@ graph TB | `aws-region` | `string` | The AWS region to deploy to | `${{ vars.AWS_REGION }}` | | `aws-role-arn` | `string` | The ARN of the AWS role to assume for the main deployment | `--` | | `aws-role-monitoring-arn` | `string` | The ARN of the AWS role to assume for the monitoring deployment | `${{ vars.AWS_ROLE_MONITORING }}` | -| `run-group` | `string` | The run group to use for the actions | `${{ vars.RUN_GROUP }}` | +| `run-label` | `string` | The run label to use for the actions | `ubuntu-latest` | ## Outputs @@ -58,7 +58,6 @@ graph TB - `AWS_REGION` (only if `inputs.aws-region` is not set) - `AWS_ROLE_MONITORING` (only if `inputs.aws-role-monitoring-arn` is not set) - `GRAFANA_WORKSPACE_NAME` (only if `inputs.grafana-workspace-name` is not set) -- `RUN_GROUP` (only if `inputs.run-group` is not set) - `TF_DIRECTORY` (only if `inputs.tf-directory` is not set) ## Repository Secrets diff --git a/docs/ci-check-app.md b/docs/ci-check-app.md index a8fbc2c..91efe8e 100644 --- a/docs/ci-check-app.md +++ b/docs/ci-check-app.md @@ -32,7 +32,7 @@ graph LR | `rust-backtrace` | `string` | The Rust backtrace settings | `full` | | `install-protoc` | `boolean` | Install `protoc` before running the rust tests. | `true` | | `use-sccache` | `boolean` | Install `sccache` before running the rust tests. | `true` | -| `run-group` | `string` | The run group to use for the actions | `${{ vars.RUN_GROUP }}` | +| `run-label` | `string` | The run label to use for the actions | `ubuntu-latest` | ## Outputs diff --git a/docs/ci-check-infra.md b/docs/ci-check-infra.md index f9aca17..dba77af 100644 --- a/docs/ci-check-infra.md +++ b/docs/ci-check-infra.md @@ -28,7 +28,7 @@ graph LR |----------------|----------|-----------------------------------------------------------------------------------------|----------------------------| | `stage` | `string` | The name of the Terraform workspace to use. The `wl-` prefix will be added to the name. | `--` | | `tf-directory` | `string` | The directory containing the Terraform files | `${{ vars.TF_DIRECTORY }}` | -| `run-group` | `string` | The run group to use for the actions | `${{ vars.RUN_GROUP }}` | +| `run-label` | `string` | The run label to use for the actions | `ubuntu-latest` | ## Outputs diff --git a/docs/ci-plan-infra.md b/docs/ci-plan-infra.md index 5606fb0..16b5125 100644 --- a/docs/ci-plan-infra.md +++ b/docs/ci-plan-infra.md @@ -28,7 +28,7 @@ graph TB | `tf-variables` | `string` | The values of the dynamic Terraform variables | `` | | `aws-region` | `string` | The AWS region to deploy to | `${{ vars.AWS_REGION }}` | | `aws-role-monitoring-arn` | `string` | The ARN of the AWS role to assume for the monitoring deployment | `${{ vars.AWS_ROLE_MONITORING }}` | -| `run-group` | `string` | The run group to use for the actions | `${{ vars.RUN_GROUP }}` | +| `run-label` | `string` | The run label to use for the actions | `ubuntu-latest` | ## Outputs diff --git a/docs/deploy-app.md b/docs/deploy-app.md index 8e7c2b7..5baa106 100644 --- a/docs/deploy-app.md +++ b/docs/deploy-app.md @@ -29,7 +29,7 @@ graph TB | `stage-url` | `string` | The URL of the environment | `--` | | `aws-region` | `string` | The AWS region to deploy to | `${{ vars.AWS_REGION }}` | | `aws-role-arn` | `string` | The ARN of the AWS role to assume for the deployment | `--` | -| `run-group` | `string` | The run group to use for the actions | `${{ vars.RUN_GROUP }}` | +| `run-label` | `string` | The run label to use for the actions | `ubuntu-latest` | ## Outputs @@ -46,7 +46,6 @@ graph TB - `AWS_REGION` (only if `inputs.aws-region` is not set) - `IMAGE_NAME` (only if `inputs.image-name` is not set) -- `RUN_GROUP` (only if `inputs.run-group` is not set) -- diff --git a/docs/deploy-infra.md b/docs/deploy-infra.md index a9ff6f7..45475dc 100644 --- a/docs/deploy-infra.md +++ b/docs/deploy-infra.md @@ -38,7 +38,7 @@ graph TB | `tf-variables` | `string` | The values of the dynamic Terraform variables | `` | | `aws-region` | `string` | The AWS region to deploy to | `${{ vars.AWS_REGION }}` | | `aws-role-monitoring-arn` | `string` | The ARN of the AWS role to assume do manage the monitoring stack | `${{ vars.AWS_ROLE_MONITORING }}` | -| `run-group` | `string` | The run group to use for the actions | `${{ vars.RUN_GROUP }}` | +| `run-label` | `string` | The run label to use for the actions | `ubuntu-latest` | ## Outputs @@ -56,7 +56,6 @@ graph TB - `AWS_REGION` (only if `inputs.aws-region` is not set) - `AWS_ROLE_MONITORING` (only if `inputs.aws-role-monitoring-arn` is not set) - `GRAFANA_WORKSPACE_NAME` (only if `inputs.grafana-workspace-name` is not set) -- `RUN_GROUP` (only if `inputs.run-group` is not set) - `TF_DIRECTORY` (only if `inputs.tf-directory` is not set) ## Repository Secrets diff --git a/docs/release-app.md b/docs/release-app.md index 33d2292..9f7c21d 100644 --- a/docs/release-app.md +++ b/docs/release-app.md @@ -24,7 +24,7 @@ graph LR | `publish-envs` | json string | The environments to publish to, needs to be a json array with names and roles, e.g. `[{name: "Staging", role: "arn:aws:iam::account:role/role-name"}` | `[]` | | `image-name` | `string` | The name of the image to publish | `${{ vars.IMAGE_NAME }}` | | `aws-region` | `string` | The AWS region to publish to | `${{ vars.AWS_REGION }}` | -| `run-group` | `string` | The run group to use for the actions | `${{ vars.RUN_GROUP }}` | +| `run-label` | `string` | The run label to use for the actions | `ubuntu-latest` | ## Outputs @@ -42,7 +42,6 @@ graph LR ## Repository Variables -- `RUN_GROUP` (only if `inputs.run-group` is not set) - `AWS_REGION` (only if `inputs.aws-region` is not set) - `IMAGE_NAME` (only if `inputs.image-name` is not set) diff --git a/docs/release-get_deployed_version.md b/docs/release-get_deployed_version.md index c06aaee..4a1a7b6 100644 --- a/docs/release-get_deployed_version.md +++ b/docs/release-get_deployed_version.md @@ -20,7 +20,7 @@ graph LR | `task-name` | `string` | The name of the ECS task | `${{ vars.IMAGE_NAME }}` | | `aws-region` | `string` | The AWS region where the task is defined | `${{ vars.AWS_REGION }}` | | `aws-role-arn` | `string` | The ARN of the AWS role to assume for publication | `--` | -| `run-group` | `string` | The run group to use for the actions | `${{ vars.RUN_GROUP }}` | +| `run-label` | `string` | The run label to use for the actions | `ubuntu-latest` | ## Outputs @@ -36,7 +36,6 @@ graph LR - `AWS_REGION` (only if `inputs.aws-region` is not set) - `IMAGE_NAME` (only if `inputs.task-name` is not set) -- `RUN_GROUP` (only if `inputs.run-group` is not set) ## Repository Secrets diff --git a/docs/release.md b/docs/release.md index 1f2c3cb..faaddc8 100644 --- a/docs/release.md +++ b/docs/release.md @@ -32,7 +32,7 @@ graph LR | `task-name` | `string` | The name of the ECS task | `${{ vars.IMAGE_NAME }}` | | `aws-region` | `string` | The AWS region to deploy to | `${{ vars.AWS_REGION }}` | | `aws-role-arn` | `string` | The ARN of the AWS role to assume to retrieve the ECS task information | `${{vars.AWS_ROLE_PROD}}` | -| `run-group` | `string` | The run group to use for the actions | `${{ vars.RUN_GROUP }}` | +| `run-label` | `string` | The run label to use for the actions | `ubuntu-latest` | ## Outputs @@ -53,7 +53,6 @@ graph LR - `IMAGE_NAME` (only if `inputs.image-name` or `inputs.task-name` is not set) - `AWS_REGION` (only if `inputs.aws-region` is not set) - `AWS_ROLE_PROD` (only if `inputs.aws-role-arn` is not set) -- `RUN_GROUP` (only if `inputs.run-group` is not set) ## Repository Secrets diff --git a/examples/dispatch_deploy.yml b/examples/dispatch_deploy.yml index 73b51c7..38082dc 100644 --- a/examples/dispatch_deploy.yml +++ b/examples/dispatch_deploy.yml @@ -44,14 +44,12 @@ jobs: task-name: ${{ vars.IMAGE_NAME }} aws-region: ${{ vars.AWS_REGION }} aws-role-arn: ${{vars.AWS_ROLE_PROD}} - run-group: ${{ vars.RUN_GROUP }} select_version: name: Select Version needs: [ get_deployed_version ] if: ${{ always() && !cancelled() && !failure() }} - runs-on: - group: ${{ vars.RUN_GROUP }} + runs-on: ubuntu-latest steps: - name: Select target version id: select_version diff --git a/examples/dispatch_publish.yml b/examples/dispatch_publish.yml index 59107f9..935f29a 100644 --- a/examples/dispatch_publish.yml +++ b/examples/dispatch_publish.yml @@ -43,8 +43,7 @@ jobs: select_envs: name: Select Environments needs: [ ci ] - runs-on: - group: ${{ vars.RUN_GROUP }} + runs-on: ubuntu-latest steps: - name: Build Envs id: build_release_envs diff --git a/examples/event_pr.yml b/examples/event_pr.yml index 1e9ac81..3e4ced2 100644 --- a/examples/event_pr.yml +++ b/examples/event_pr.yml @@ -27,7 +27,7 @@ jobs: check_pr: name: Check PR runs-on: - group: ${{ vars.RUN_GROUP }} + labels: ubuntu-latest permissions: statuses: write steps: @@ -38,8 +38,7 @@ jobs: paths_filter: name: Paths Filter - runs-on: - group: ${{ vars.RUN_GROUP }} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: WalletConnect/actions/github/paths-filter/@2.4.0 @@ -61,7 +60,6 @@ jobs: name: Merge Check needs: [ check_pr, ci ] if: ${{ always() && !cancelled() && !failure() }} - runs-on: - group: ${{ vars.RUN_GROUP }} + runs-on: ubuntu-latest steps: - run: echo "CI is successful" diff --git a/examples/event_release.yml b/examples/event_release.yml index 798b50c..3853188 100644 --- a/examples/event_release.yml +++ b/examples/event_release.yml @@ -31,8 +31,7 @@ permissions: jobs: paths_filter: name: Paths Filter - runs-on: - group: ${{ vars.RUN_GROUP }} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: WalletConnect/actions/github/paths-filter/@2.4.0 diff --git a/examples/sub-validate.yml b/examples/sub-validate.yml index b915cd1..98479e9 100644 --- a/examples/sub-validate.yml +++ b/examples/sub-validate.yml @@ -18,7 +18,7 @@ jobs: health-check: name: Health Check - ${{ inputs.stage }} runs-on: - group: ${{ vars.RUN_GROUP }} + labels: ubuntu-latest environment: name: ${{ inputs.stage }} url: ${{ inputs.stage-url }} @@ -29,7 +29,7 @@ jobs: integration-tests: name: Integration Tests - ${{ inputs.stage }} runs-on: - group: ${{ vars.RUN_GROUP }} + labels: ubuntu-latest environment: name: ${{ inputs.stage }} url: ${{ inputs.stage-url }}