Merge pull request #1400 from grouville/retriggerci-contributing

Add retriggering CI section
This commit is contained in:
Gerhard Lazu 2022-01-12 15:01:11 +00:00 committed by GitHub
commit c60c65edda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,3 +127,17 @@ Then from the repository root:
```console
markdownlint -c .markdownlint.yaml docs/**/*.md
```
### How to retrigger a Github Action workflow?
There isn't a button that Dagger contributors can click in their fork of Dagger that will trigger a GitHub Action workflow run. See issue [#1669](https://github.com/dagger/dagger/issues/1169) for more context.
The current workaround is to force push to your fork:
```bash
➜ # Apply a small change to a comment
➜ git add --all
➜ make lint # Make sure that the linter is happy :)
➜ git commit --signoff --amend
➜ git push <your-fork> <Branch> --force
```