Does the same apply to branches as well? Because this doesn't work for me:
on: push: branches: - '*'
It does apply to branches, but if your branch might include / then you need to match on that too (for as many levels as you may have - */*, */*/*, */*/*/* etc.) e.g.:
on: push: branches: - '*'
- '*/*'
The proposed solutuon doesnt seem to work for me.
:
on: push: tags: - '*'
The proposed solution doesn't seem to work for me too :/ .
I am sorry. It is indeed working for me. Thank you
Hi @ethomson this solution appears to trigger when pushing to a new branch.
eg. `git push --set-upstream origin test` will cause it to trigger. Subsequent pushes will not cause it to trigger. Is this intended?
UPDATE:
This problem appears to have be fixed on the GitHub side?
where this needs to be updated.
I need to create trigger only when the tag is pushed/created in Github.any suggestion