fix(ci): Use a GitHub PAT when creating PR automatically #137
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: Build and test | |
on: | |
push: | |
branches: | |
- "main" | |
tags: | |
- "v*" | |
pull_request: | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
bazel: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "☁️ Setup runner" | |
uses: ./.github/workflows/manage-runner-pre | |
######################################## | |
# Build and test | |
######################################## | |
- name: "🚀 Building" | |
run: bazel build ... | |
- run: bazel test ... | |
name: "🚀 Testing" | |
######################################## | |
# Prepare release | |
######################################## | |
- name: "🚢 Prepare release" | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
uses: ./.github/workflows/prepare-release | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
######################################## | |
# Upload container images | |
######################################## | |
- name: "🔧 Login to GitHub Container Registry" | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: "📦 Push images to GitHub Container Registry" | |
if: ${{ startsWith(github.ref, 'refs/tags/v') || startsWith(github.head_ref, 'container') || startsWith(github.ref, 'refs/heads/container') || (github.ref == 'refs/heads/main') }} | |
run: bazel query --noshow_progress 'kind("oci_push", ...)' | xargs -I_target bazel run _target -- --tag ${GITHUB_SHA} | |
######################################## | |
# Update k8s deployments | |
######################################## | |
- name: "🤖 Update k8s deployments" | |
if: ${{ startsWith(github.ref, 'refs/tags/v') || startsWith(github.head_ref, 'container') || startsWith(github.ref, 'refs/heads/container') || (github.ref == 'refs/heads/main') }} | |
uses: ./.github/workflows/update-k8s-deployments | |
with: | |
gitlab_api_token: ${{ secrets.GITLAB_API_TOKEN }} | |
######################################## | |
# Clean up runner | |
######################################## | |
- uses: ./.github/workflows/manage-runner-post | |
name: "🪓 Tear down runner" |