mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
workflows/periodic-merge: set custom name for haskell-updates merge
The simple name can lead to confusion. Adding an explicit override to make it more clear.
This commit is contained in:
parent
f21da74e5b
commit
38169112e8
3 changed files with 4 additions and 2 deletions
4
.github/workflows/periodic-merge-24h.yml
vendored
4
.github/workflows/periodic-merge-24h.yml
vendored
|
@ -35,10 +35,12 @@ jobs:
|
||||||
into: staging-next-25.05
|
into: staging-next-25.05
|
||||||
- from: staging-next-25.05
|
- from: staging-next-25.05
|
||||||
into: staging-25.05
|
into: staging-25.05
|
||||||
- from: master staging
|
- name: merge-base(master,staging) → haskell-updates
|
||||||
|
from: master staging
|
||||||
into: haskell-updates
|
into: haskell-updates
|
||||||
uses: ./.github/workflows/periodic-merge.yml
|
uses: ./.github/workflows/periodic-merge.yml
|
||||||
with:
|
with:
|
||||||
from: ${{ matrix.pairs.from }}
|
from: ${{ matrix.pairs.from }}
|
||||||
into: ${{ matrix.pairs.into }}
|
into: ${{ matrix.pairs.into }}
|
||||||
|
name: ${{ matrix.pairs.name || format('{0} → {1}', matrix.pairs.from, matrix.pairs.into) }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
1
.github/workflows/periodic-merge-6h.yml
vendored
1
.github/workflows/periodic-merge-6h.yml
vendored
|
@ -35,4 +35,5 @@ jobs:
|
||||||
with:
|
with:
|
||||||
from: ${{ matrix.pairs.from }}
|
from: ${{ matrix.pairs.from }}
|
||||||
into: ${{ matrix.pairs.into }}
|
into: ${{ matrix.pairs.into }}
|
||||||
|
name: ${{ format('{0} → {1}', matrix.pairs.from, matrix.pairs.into) }}
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|
1
.github/workflows/periodic-merge.yml
vendored
1
.github/workflows/periodic-merge.yml
vendored
|
@ -15,7 +15,6 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
merge:
|
merge:
|
||||||
runs-on: ubuntu-24.04-arm
|
runs-on: ubuntu-24.04-arm
|
||||||
name: ${{ inputs.from }} → ${{ inputs.into }}
|
|
||||||
steps:
|
steps:
|
||||||
# Use a GitHub App to create the PR so that CI gets triggered
|
# Use a GitHub App to create the PR so that CI gets triggered
|
||||||
# The App is scoped to Repository > Contents and Pull Requests: write for Nixpkgs
|
# The App is scoped to Repository > Contents and Pull Requests: write for Nixpkgs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue