You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/fetch_and_log.yaml
+17-9Lines changed: 17 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -13,28 +13,36 @@ jobs:
13
13
14
14
steps:
15
15
- name: Get Last Processed Run ID
16
-
id: get-last-id
16
+
id: get-last-processed-run-id
17
17
run: |
18
-
LAST_PROCESSED_RUN_ID=$(gh variable get --repo $GITHUB_REPOSITORY LAST_PROCESSED_RUN_ID --json value -q ".value" 2>/dev/null) || echo "Variable not found, defaulting to 0"
18
+
LAST_PROCESSED_RUN_ID=$(gh variable get LAST_PROCESSED_RUN_ID --repo $GITHUB_REPOSITORY --json value -q ".value" 2>/dev/null) || echo "Variable not found, defaulting to 0"
0 commit comments