Try removing type
This commit is contained in:
parent
0e92980867
commit
c060e492db
1 changed files with 1 additions and 2 deletions
3
.github/workflows/set-timestamp.yaml
vendored
3
.github/workflows/set-timestamp.yaml
vendored
|
@ -4,7 +4,6 @@ on:
|
||||||
timestamp:
|
timestamp:
|
||||||
description: 'Timestamp to inject into wiki-meta-cache.yaml. Example: 2022-10-30T19:37:23.138Z'
|
description: 'Timestamp to inject into wiki-meta-cache.yaml. Example: 2022-10-30T19:37:23.138Z'
|
||||||
required: true
|
required: true
|
||||||
type: string
|
|
||||||
|
|
||||||
name: Set lastCheckedRecentChanges
|
name: Set lastCheckedRecentChanges
|
||||||
|
|
||||||
|
@ -26,7 +25,7 @@ jobs:
|
||||||
cat data/wiki-meta-cache.yaml
|
cat data/wiki-meta-cache.yaml
|
||||||
- name: Change content
|
- name: Change content
|
||||||
run: |
|
run: |
|
||||||
echo "lastCheckedRecentChanges: '${{ github.events.inputs.timestamp }}'" > data/wiki-meta-cache.yaml
|
echo "lastCheckedRecentChanges: '${{ inputs.timestamp }}'" > data/wiki-meta-cache.yaml
|
||||||
- name: Updated content
|
- name: Updated content
|
||||||
run: |
|
run: |
|
||||||
cat data/wiki-meta-cache.yaml
|
cat data/wiki-meta-cache.yaml
|
||||||
|
|
Reference in a new issue