Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dersimn/github-actions-dependabot-docker-build-with-multiple-flavors
https://github.com/dersimn/github-actions-dependabot-docker-build-with-multiple-flavors
Last synced: about 14 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/dersimn/github-actions-dependabot-docker-build-with-multiple-flavors
- Owner: dersimn
- Created: 2024-10-20T18:36:09.000Z (30 days ago)
- Default Branch: master
- Last Pushed: 2024-11-12T23:41:28.000Z (7 days ago)
- Last Synced: 2024-11-13T00:26:33.696Z (7 days ago)
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Secret must be set under `Secrets and Variables > Dependabot`, API:
- Fine-grained personal access token:
- Contents read/write
- Pull-requests: read/write
- (basically that's the same that you specify in YAML for `GITHUB_TOKEN`)
- Classic Token needs only scope `repo`## Clean Testing
For clean testing, re-create the Repository on GitHub when it gets to polluted with Tags and Releases:
gh repo delete --yes
gh repo create --public ${${$(git remote get-url origin)##*/}%.git}
gh secret set PERSONAL_ACCESS_TOKEN --body '' --app dependabot
gh secret set DOCKERHUB_TOKEN --body ''git tag | xargs git tag -d
git push -u origin master