* Remove extra liquid tags
Reusable contains the same tags that it is wrapped in
* update Using environments for deployment article
* Version Releasing and maintaining actions
* Version Adding self-hosted runners
* Version Removing self-hosted runners
* Version reusables
* Version Managing access to self hosted runners using groups
* Update Adding selfhosted runners
* Update Managing access to selfhosted runners using groups
* Remove enterprise from fpt version
* Update Removing selfhosted runners
* Update reusables
* actions: update "understanding github actions"
Take a refresh pass on the "understanding github actions" document, in
order to reinforce our CI/CD messaging and definitions, and update the
art with high-res illustrations.
* Apply suggestions from code review
Co-authored-by: Martin Lopes <martin389@github.com>
Co-authored-by: Martin Lopes <martin389@github.com>
Co-authored-by: jmarlena <6732600+jmarlena@users.noreply.github.com>
* Update reusable workflows docs
* Update content/actions/learn-github-actions/reusing-workflows.md
Co-authored-by: Lucas Costi <lucascosti@users.noreply.github.com>
* Update content/actions/learn-github-actions/reusing-workflows.md
* Update content/actions/learn-github-actions/reusing-workflows.md
* Update content/actions/learn-github-actions/reusing-workflows.md
Co-authored-by: Lucas Costi <lucascosti@users.noreply.github.com>
* Update content/actions/learn-github-actions/reusing-workflows.md
Co-authored-by: Martin Lopes <martin389@github.com>
* Apply review suggestion from Lucas
* Update content/actions/learn-github-actions/reusing-workflows.md
Co-authored-by: Martin Lopes <martin389@github.com>
* Update content/actions/learn-github-actions/reusing-workflows.md
Co-authored-by: Martin Lopes <martin389@github.com>
* Update content/actions/learn-github-actions/reusing-workflows.md
Co-authored-by: Martin Lopes <martin389@github.com>
* Add information about use of runners
As per review comment from Ajay Krishna Nalisetty
* Update content/actions/learn-github-actions/workflow-syntax-for-github-actions.md
Co-authored-by: Lucas Costi <lucascosti@users.noreply.github.com>
* Update content/actions/learn-github-actions/workflow-syntax-for-github-actions.md
* Fix version as per Lucas's review comment
* Explain using environment secrets
* Add workflow diagram
* Move explanation of diagram above it
* Slight change to job_workflow-ref description
Include the syntax of the response data, as per
https://github.slack.com/archives/C01SMLA6MNY/p1637731982336700
* Clarify difference between repo and job_workflow_ref
Co-authored-by: Lucas Costi <lucascosti@users.noreply.github.com>
Co-authored-by: Martin Lopes <martin389@github.com>
Co-authored-by: Octomerger Bot <63058869+Octomerger@users.noreply.github.com>
* Use in_progress workflow_job example, not queued
### tl;dr
This changes the example `workflow_job` payload to be an `in_progress` event instead of `queued` event.
### why
In #22174, I added some keys to the example workflow_job json. This was correct, but by adding non-null _values_, **I introduced a subtle bug**.
It's a bug because a `queued` workflow is—by definition—_not_ yet assigned to a runner. So all the `runner_*` attributes will be `null` in the real world.
After the workflow becomes `in_progress`, all the values are guaranteed to exist. So let's change the example to be an `in_progress` event, since it's a better example for documentation.
* Explain more about the runner_* attributes in "workflow_job_properties.md"
* Consistentize naming
Co-authored-by: Martin Lopes <martin389@github.com>
Co-authored-by: hubwriter <hubwriter@github.com>