-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I check a catalog update upstream #133
Comments
@jbusecke, i have been meaning to add a |
it appears the - name: Dispatch event
uses: actions/github-script@v4
with:
github-token: ${{ secrets.GH_USER_TOKEN }}
script: |
await github.repos.createDispatchEvent({
owner: 'leap-stc',
repo: 'data-management',
event_type: 'update-catalog',
client_payload: {
origin_repo: `${github.repository}`
}
})
as you can see this step requires using a personal access token ( |
Thanks for the explanation @andersy005 . My intuition is that the added complexity is not worth it? But maybe we can add instructions that indicate that a manual rebuild or wait is needed to see updates? Happy for this to be closed via a small docs PR. I would not set the cron trigger frequency this high, as this seems like a once-off scenario in many cases? |
Consider the following case: I just updated some info in a feedstock repo. Is there a way other than building the catalog on main via manually running this action to preview the resulting changes?
@andersy005
The text was updated successfully, but these errors were encountered: