You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 4, 2021. It is now read-only.
Hi! in the README.md, in the Example Workflow section, it is mentioned that:
This will create a Release, as well as a release event, which could be handled by a third party service, or by GitHub Actions for additional uses [...]
When you use the repository's GITHUB_TOKEN to perform tasks on behalf of the GitHub Actions app, events triggered by the GITHUB_TOKEN will not create a new workflow run. [...] For example, if a workflow run pushes code using the repository's GITHUB_TOKEN, a new workflow will not run even when the repository contains a workflow configured to run when push events occur.
Furthermore, I have tested a situation where a publish workflow configured to be executed on:release:created while there's another release workflow that is triggered on:push that uses actions/create-release to create a release. But, after execution of release workflow, publish workflow will not run.
It confuses me that which one of the descriptions are correct, or what am I doing wrong.
I use GITHUB_TOKEN virtual-env-provided token.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi! in the README.md, in the Example Workflow section, it is mentioned that:
But, in actions triggers documentation at Triggering new workflows using a personal access token, it is mentioned that:
Furthermore, I have tested a situation where a
publish
workflow configured to be executedon:release:created
while there's anotherrelease
workflow that is triggeredon:push
that usesactions/create-release
to create a release. But, after execution ofrelease
workflow,publish
workflow will not run.It confuses me that which one of the descriptions are correct, or what am I doing wrong.
I use
GITHUB_TOKEN
virtual-env-provided token.The text was updated successfully, but these errors were encountered: