Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci-require-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
jobs:
require-labels:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2404
outputs:
status: ${{ steps.require-labels.outputs.status }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ permissions:
pull-requests: read
jobs:
get-version:
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2404
outputs:
version: ${{ steps.get-version.outputs.version }}
steps:
Expand All @@ -34,7 +34,7 @@ jobs:
echo "SHORT_SHA: $(git rev-parse --short HEAD)" >> $GITHUB_STEP_SUMMARY
release:
if: ${{ needs.get-version.outputs.version != 'undefined' || (github.event_name == 'workflow_dispatch' && needs.get-version.outputs.version != 'undefined') }}
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2404
needs: [ get-version ]
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/yaml-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
yaml-lint:
name: yaml-lint
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand All @@ -28,7 +28,7 @@ jobs:
files=("${files[@]}" "$file")
fi
done
echo "::set-output name=files::${files[@]}"
echo "files=${files[@]}" >> $GITHUB_OUTPUT

- name: Lint YAML files
uses: karancode/yamllint-github-action@master
Expand All @@ -44,7 +44,7 @@ jobs:
add-reviewers:
if: "!contains( toJson(github), 'reviewers-set' )"
needs: [yaml-lint]
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: add approvers
uses: kentaro-m/auto-assign-action@v2.0.0
Expand Down