Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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