Skip to content

Commit

Permalink
testing SIMD tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
aalu1418 committed Mar 22, 2024
1 parent 0c6eee5 commit cd2a34f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/dependency-updates.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: DependencyUpdater
on:
push:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # check every day at midnight UTC
Expand Down Expand Up @@ -51,3 +52,34 @@ jobs:
echo "prBody=(run CI by closing + reopening PR) chainlink/integration-tests uses chainlink-testing-framework@$coreVersion" >> "$GITHUB_OUTPUT"
echo "commitString=[automated] bump e2e <> core/integration-tests dependencies" >> "$GITHUB_OUTPUT"
secrets: inherit
SIMD-Update-Checker:
runs-on: ubuntu-latest
steps:
- name: Check For Updates In Past Week
id: updates
run: |

Check failure on line 60 in .github/workflows/dependency-updates.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/dependency-updates.yml#L60

shellcheck reported issue in this script: SC1001:info:2:101: This \= will be a regular '=' in this context [shellcheck]
Raw output
.github/workflows/dependency-updates.yml:60:9: shellcheck reported issue in this script: SC1001:info:2:101: This \= will be a regular '=' in this context [shellcheck]

Check failure on line 60 in .github/workflows/dependency-updates.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/dependency-updates.yml#L60

shellcheck reported issue in this script: SC1001:info:2:117: This \= will be a regular '=' in this context [shellcheck]
Raw output
.github/workflows/dependency-updates.yml:60:9: shellcheck reported issue in this script: SC1001:info:2:117: This \= will be a regular '=' in this context [shellcheck]

Check failure on line 60 in .github/workflows/dependency-updates.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/dependency-updates.yml#L60

shellcheck reported issue in this script: SC1001:info:5:103: This \= will be a regular '=' in this context [shellcheck]
Raw output
.github/workflows/dependency-updates.yml:60:9: shellcheck reported issue in this script: SC1001:info:5:103: This \= will be a regular '=' in this context [shellcheck]

Check failure on line 60 in .github/workflows/dependency-updates.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/dependency-updates.yml#L60

shellcheck reported issue in this script: SC1001:info:5:121: This \= will be a regular '=' in this context [shellcheck]
Raw output
.github/workflows/dependency-updates.yml:60:9: shellcheck reported issue in this script: SC1001:info:5:121: This \= will be a regular '=' in this context [shellcheck]
# new PRs
OPEN=$(curl https://api.github.com/repos/solana-foundation/solana-improvement-documents/pulls\?state\=open\&per_page\=100 | jq --arg t "$(date -v-7d +%s)" -r '.[] | select (.created_at | . == null or fromdateiso8601 > ($t|tonumber)) | "- \(.html_url)"')
# closed PRs
CLOSED=$(curl https://api.github.com/repos/solana-foundation/solana-improvement-documents/pulls\?state\=closed\&per_page\=100 | jq --arg t "$(date -v-7d +%s)" -r '.[] | select (.created_at | . == null or fromdateiso8601 > ($t|tonumber)) | "- \(.html_url)"')
echo "open=$OPEN" >> "$GITHUB_OUTPUT"
echo "closed=$CLOSED" >> "$GITHUB_OUTPUT"
- name: Open Issue
if: steps.updates.outputs.open || steps.updates.outputs.closed
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |

Check failure on line 73 in .github/workflows/dependency-updates.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/dependency-updates.yml#L73

shellcheck reported issue in this script: SC2215:warning:3:3: This flag is used as a command name. Bad line break or missing [ .. ]? [shellcheck]
Raw output
.github/workflows/dependency-updates.yml:73:9: shellcheck reported issue in this script: SC2215:warning:3:3: This flag is used as a command name. Bad line break or missing [ .. ]? [shellcheck]

Check failure on line 73 in .github/workflows/dependency-updates.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/dependency-updates.yml#L73

shellcheck reported issue in this script: SC2215:warning:4:3: This flag is used as a command name. Bad line break or missing [ .. ]? [shellcheck]
Raw output
.github/workflows/dependency-updates.yml:73:9: shellcheck reported issue in this script: SC2215:warning:4:3: This flag is used as a command name. Bad line break or missing [ .. ]? [shellcheck]

Check failure on line 73 in .github/workflows/dependency-updates.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/dependency-updates.yml#L73

shellcheck reported issue in this script: SC2215:warning:5:3: This flag is used as a command name. Bad line break or missing [ .. ]? [shellcheck]
Raw output
.github/workflows/dependency-updates.yml:73:9: shellcheck reported issue in this script: SC2215:warning:5:3: This flag is used as a command name. Bad line break or missing [ .. ]? [shellcheck]
gh issue create \
-a @aalu1418 # TODO: assign to team when available
-t "SIMD Updates - $(date)"
-l auto-SIMD-alerts
-b "## Opened
${{ steps.updates.outputs.open}}
## Closed
${{ steps.updates.outputs.closed}}
"

0 comments on commit cd2a34f

Please sign in to comment.