Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/run-configlet-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Run Configlet Sync

on:
workflow_dispatch:
schedule:
- cron: '0 0 15 * *'

jobs:
call-gha-workflow:
uses: exercism/github-actions/.github/workflows/configlet-sync.yml@main
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this is added shouldn't we pin to a specific sha? As we do with all other actions.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The gha-best-practices documentation states:

When using other actions, pin them to a commit (via their SHA), not to a branch or tag.

However, since we're using an internal workflow from the github-actions repo, we don’t need to pin it to a specific SHA; referencing it by branch is appropriate in this case.

Loading