Skip to content

Commit

Permalink
$ rename 's/(\w{2})\.yml/$1_base.yml/' .github/workflows/*
Browse files Browse the repository at this point in the history
  • Loading branch information
n0099 committed Jun 13, 2024
1 parent c085efb commit 3c85391
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/be.yml → .github/workflows/be_base.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: be
name: be/base
on:
workflow_call:
inputs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/be_runs-on.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
matrix:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
uses: ./.github/workflows/be.yml
uses: ./.github/workflows/be_base.yml
with:
runs-on: ${{ matrix.runs-on }}
2 changes: 1 addition & 1 deletion .github/workflows/c#.yml → .github/workflows/c#_base.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: c#
name: c#/base
on:
workflow_call:
inputs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/c#_runs-on.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
matrix:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
uses: ./.github/workflows/c#.yml
uses: ./.github/workflows/c#_base.yml
with:
runs-on: ${{ matrix.runs-on }}
2 changes: 1 addition & 1 deletion .github/workflows/fe.yml → .github/workflows/fe_base.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: fe
name: fe/base
on:
workflow_call:
inputs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fe_runs-on.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
matrix:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
uses: ./.github/workflows/fe.yml
uses: ./.github/workflows/fe_base.yml
with:
runs-on: ${{ matrix.runs-on }}

0 comments on commit 3c85391

Please sign in to comment.