thenets triggered a container build for refs/pull/7/merge #26
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: PR check | |
run-name: ${{ github.actor }} triggered a container build for ${{ github.ref }} | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled, unlabeled] | |
jobs: | |
Triage: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/labeler@v5 | |
Container-Build: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "🎉 The job was automatically triggered by a '${{ github.event_name }}' event." | |
- run: echo "🐧 This job is now running on a '${{ runner.os }}' server." | |
- name: "🚚 Check out repository code: ${{ github.ref }} ${{ github.repository }}" | |
uses: actions/checkout@v4 | |
- name: "🖥️ Container build" | |
run: | | |
set -x | |
cd ./container/ | |
make build |