chore(deps): update aws-actions/configure-aws-credentials action to v4.0.2 #425
Workflow file for this run
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: pull-request-main | |
on: | |
merge_group: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: ci-lint | |
uses: ./actions/ci-lint-ts | |
with: | |
# general inputs | |
checkout-repo: "false" | |
# grafana inputs | |
metrics-job-name: ci-lint | |
gc-basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | |
gc-host: ${{ secrets.GRAFANA_INTERNAL_HOST }} | |
gc-org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | |
ci-lint-misc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: ci-lint-misc | |
uses: ./actions/ci-lint-misc | |
with: | |
# general inputs | |
checkout-repo: "false" | |
# grafana inputs | |
metrics-job-name: ci-lint-misc | |
gc-basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | |
gc-host: ${{ secrets.GRAFANA_INTERNAL_HOST }} | |
gc-org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | |
cd-signed-commits: | |
# Disable this job until it's updated to be: | |
# 1. More generalizable for all workspaces requiring build artifacts | |
# 2. Have better attribution for the commits generated from this workflow | |
if: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
# Commit back any changes based on the commit that triggered this action | |
# rather than merge commit of main into the PR branch | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup pnpm | |
uses: ./actions/setup-nodejs | |
- name: Build signed-commits | |
run: pnpm nx run signed-commits:build | |
- name: Commit back any changes | |
uses: planetscale/ghcommit-action@dff7eba35bf4fec6c6424adfc89f4d954fb6f8d0 # v0.1.33 | |
with: | |
commit_message: "🤖 Update build" | |
repo: ${{ github.repository }} | |
branch: ${{ github.head_ref || github.ref_name }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ci-signed-commits: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Setup pnpm | |
uses: ./actions/setup-nodejs | |
- name: Run tests for signed-commits | |
run: pnpm nx run signed-commits:test | |
ci-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: ci-test | |
uses: ./actions/ci-test-ts | |
with: | |
# general inputs | |
checkout-repo: "false" | |
# grafana inputs | |
metrics-job-name: ci-test | |
gc-basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | |
gc-host: ${{ secrets.GRAFANA_INTERNAL_HOST }} | |
gc-org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} | |
ci-build-artifacts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo (needed to reference local action) | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: ci-build-artifacts | |
uses: ./actions/cicd-build-publish-artifacts-ts | |
with: | |
# general inputs | |
checkout-repo: "false" | |
# grafana inputs | |
metrics-job-name: ci-build-artifacts | |
gc-basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }} | |
gc-host: ${{ secrets.GRAFANA_INTERNAL_HOST }} | |
gc-org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }} |