Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/agent-authorship-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ on:
required: false
type: boolean
default: false
runner_label:
description: "Runner label used for the label job"
required: false
type: string
default: blacksmith-4vcpu-ubuntu-2404

permissions:
contents: read
Expand All @@ -16,13 +21,13 @@ permissions:

jobs:
label:
runs-on: ubuntu-latest
runs-on: ${{ inputs.runner_label }}
steps:
- name: Checkout org workflow helpers
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
repository: evalops/.github
ref: main
ref: ${{ github.workflow_sha }}
path: org-defaults

- name: Resolve pull request
Expand Down
Loading