Skip to content

Commit b28e8fb

Browse files
MartinNikovPetarKirov
authored andcommitted
fix(gh-actions): Remove unexpected value 'inputs'
1 parent 5d80b76 commit b28e8fb

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

.github/workflows/update-flake-lock.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: "Update Nix Flake lockfile"
33
on:
44
# Allow this workflow to be reused by other workflows:
55
workflow_call:
6+
secrets:
7+
nix-github-token:
8+
description: GitHub token to add as access-token in nix.conf
9+
required: false
610

711
# Allow this workflow to be triggered manually:
812
workflow_dispatch:
@@ -11,12 +15,6 @@ on:
1115
schedule:
1216
- cron: 0 0 * * 0 # https://crontab.guru/#0_0_*_*_0
1317

14-
inputs:
15-
nix-github-token:
16-
description: GitHub token to add as access-token in nix.conf
17-
default: ''
18-
required: false
19-
2018
jobs:
2119
main:
2220
runs-on: ubuntu-latest

.github/workflows/update-flake-packages.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ name: "Update Flake Packages ❄️"
33
on:
44
# Allow this workflow to be reused by other workflows:
55
workflow_call:
6+
secrets:
7+
nix-github-token:
8+
description: GitHub token to add as access-token in nix.conf
9+
required: false
610

711
# Allow this workflow to be triggered manually:
812
workflow_dispatch:
@@ -11,12 +15,6 @@ on:
1115
schedule:
1216
- cron: "0 0 * * *" # https://crontab.guru/#0_0_*_*_*
1317

14-
inputs:
15-
nix-github-token:
16-
description: GitHub token to add as access-token in nix.conf
17-
default: ''
18-
required: false
19-
2018
jobs:
2119
updateFlakePackages:
2220
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)