Skip to content

Commit 8a636bc

Browse files
committed
workflows: attempt on distinguishing PRs with date
1 parent abd2cbe commit 8a636bc

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/flake.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18+
- name: get date
19+
id: date
20+
run: echo "date=$(date '%B %d, %Y')" >> $GITHUB_OUTPUT
1821

1922
- uses: DeterminateSystems/determinate-nix-action@v3
2023
- name: Update flake.lock
2124
id: flake-upd
2225
uses: DeterminateSystems/update-flake-lock@v25
2326
with:
24-
pr-title: "Update flake.lock to nixpkgs ${{ steps.flake-upd.outputs.commit-hash }}"
27+
pr-title: "Update flake.lock on ${{ steps.date.outputs.date }}"
2528
pr-labels: |
2629
dependencies
27-
pr-rebase: true
28-
30+
nix

0 commit comments

Comments
 (0)