Skip to content

Commit

Permalink
upstream tracker: agave release schedules + feature gates
Browse files Browse the repository at this point in the history
  • Loading branch information
aalu1418 committed Jul 10, 2024
1 parent 32731a3 commit e283e0a
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/upstream-tracker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- cron: '0 0 * * 1' # check monday at midnight UTC

jobs:
SIMD-Update-Checker:
Solana-Update-Checker:
runs-on: ubuntu-latest
steps:
- name: Check For Updates In Past Week
Expand All @@ -24,7 +24,7 @@ jobs:
# updates to anza-xyz/agave wiki (contains feature gate updates + release schedules)
git clone https://github.com/anza-xyz/agave.wiki.git
cd agave.wiki
WIKI=$(git whatchanged --since="7 days ago" -p 2>&1)
printf -v WIKI "%q" $(git diff $(git log --since="7 days ago" --pretty=format:"%h" | tail -1)^..HEAD)
echo "open<<EOF" >> $GITHUB_OUTPUT
echo "$OPEN" >> $GITHUB_OUTPUT
Expand All @@ -44,4 +44,17 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TODO: update assignee to teams when GH supports it
run: gh issue create -a aalu1418 -t "Upstream Updates - $(date)" -l "[auto] Upstream Updates" -b $'## SIMD\n### Opened\n${{ steps.updates.outputs.open }}\n\n### Closed\n${{ steps.updates.outputs.closed }}\n## Agave Wiki ```diff\n${{ steps.updates.outputs.wiki }}\n```'
run: |
{
echo "## SIMD";
echo "### Opened";
echo "${{ steps.updates.outputs.open }}";
echo "### Closed";
echo "${{ steps.updates.outputs.closed }}";
echo "## Agave Wiki";
echo "\`\`\`diff";
echo "${{ steps.updates.outputs.wiki }}";
echo "\`\`\`";
} >> output.md
gh issue create -a aalu1418 -t "Upstream Updates - $(date)" -l "[auto] Upstream Updates" -F output.md

0 comments on commit e283e0a

Please sign in to comment.