Octomerger Bot
d68a2ee860
Merge branch 'main' into repo-sync
2022-03-22 04:25:34 -07:00
Courtney Wilson
ad3d0cd965
Renaming repo workflow update #15575 ( #16144 )
2022-03-22 10:38:44 +00:00
Octomerger Bot
033f1fd671
Merge branch 'main' into repo-sync
2022-03-22 02:24:45 -07:00
Abby Vollmer
a37f715f1f
change order of some site-policy docs ( #26307 )
...
* reordering the docs
2022-03-22 09:12:13 +00:00
Felicity Chapman
e177d70107
Fix a change missed in a last minute update ( #26389 )
2022-03-22 09:07:33 +00:00
mc
1b7df82070
Merge branch 'main' into patch-2
2022-03-22 08:44:44 +00:00
Jenni Christensen
3e35338bba
Merge branch 'main' into dihydrojen-4
2022-03-21 17:38:06 -07:00
Jenni Christensen
cc96a78ba4
Update content/get-started/privacy-on-github/managing-data-use-settings-for-your-private-repository.md
...
Co-authored-by: Felicity Chapman <felicitymay@github.com >
2022-03-21 17:21:44 -07:00
Jenni Christensen
219d719446
Update content/get-started/privacy-on-github/managing-data-use-settings-for-your-private-repository.md
...
Co-authored-by: Felicity Chapman <felicitymay@github.com >
2022-03-21 17:13:30 -07:00
Sarah Edwards
63eee1f324
remove beta note for restricting runners to workflows ( #26083 )
2022-03-22 00:01:08 +00:00
Octomerger Bot
fc69cfded8
Merge branch 'main' into repo-sync
2022-03-21 13:50:25 -07:00
Felicity Chapman
c76963ddab
[March 21, 2022] Updates for new feed and new option to follow organizations ( #26095 )
2022-03-21 20:29:29 +00:00
Courtney Wilson
f544ae57d8
Update configuration-options-for-the-dependabot.yml-file.md ( #16434 )
2022-03-21 20:10:42 +00:00
Matt Pollard
d747df7c49
Fix two lightweight feature flags for GitHub AE ( #26371 )
2022-03-21 16:39:04 +00:00
Jenni Christensen
8929c8c947
Update content/get-started/privacy-on-github/about-githubs-use-of-your-data.md
...
Co-authored-by: Felicity Chapman <felicitymay@github.com >
2022-03-21 09:26:05 -07:00
Octomerger Bot
3e613cac7d
Merge branch 'main' into repo-sync
2022-03-21 06:38:07 -07:00
Laura Coursen
2237e00538
Enterprise bug fixes for the week of 2022-03-07 ( #26098 )
2022-03-21 13:31:54 +00:00
Ramya Parimi
de21dd8565
Merge branch 'main' into patch-2
2022-03-21 07:30:26 -05:00
mc
1a01c6612f
fix typos ( #26366 )
...
* Fix typos
2022-03-21 11:54:54 +00:00
Octomerger Bot
c6e809abc4
Merge branch 'main' into repo-sync
2022-03-21 03:32:00 -07:00
Octomerger Bot
e8bf4ec7aa
Merge branch 'main' into repo-sync
2022-03-21 03:30:05 -07:00
hubwriter
8462b48819
Clarify why you'd use a fork ( #26153 )
2022-03-21 10:23:47 +00:00
Courtney Wilson
fd2d1036d5
refreshed some of the language around pull request reviews and differ… ( #16127 )
...
* refreshed some of the language around pull request reviews and different account types
* Apply suggestions from code review
Co-authored-by: hubwriter <hubwriter@github.com >
Co-authored-by: Felicity Chapman <felicitymay@github.com >
Co-authored-by: hubwriter <hubwriter@github.com >
2022-03-21 09:44:51 +00:00
djdefi
e5285c09a9
Clarify that web and api request redirect to configured hostname in GHES ( #26217 )
2022-03-21 16:30:18 +10:00
Martin Lopes
09c77faaa1
Update workflow-commands-for-github-actions.md
2022-03-21 11:19:54 +10:00
Martin Lopes
f24a5cb1eb
Update workflow-commands-for-github-actions.md
2022-03-21 11:04:34 +10:00
Martin Lopes
57c4680555
Merge branch 'main' into pwsh-commands
2022-03-21 10:29:34 +10:00
Riaan du Plessis
3c6a586a38
Added missing whitespace
2022-03-20 22:43:24 +02:00
Laura Coursen
ae8a928909
Networking requirements and resolution for GitHub Actions on GHES ( #25622 )
2022-03-19 10:48:19 +00:00
Brendon Smith
06cf952123
Document how to use secrets with if: conditionals in GitHub Actions workflows ( #12722 )
...
* 🔒 Document how to use secrets with `if:`
github/docs#6861
github/docs#12722
- Add a complete workflow example to `jobs.<job_id>.steps[*].if`,
demonstrating how to skip a step if a secret is not present
- Add an explanation to "Using encrypted secrets in a workflow"
- Cross-reference the two pages
* 🔒 Compare secrets with empty strings in `if:`
github/docs#6861
https://github.com/github/docs/pull/12722#discussion_r801011000
Rather than referencing two secrets:
1. `${{ secrets.SECRET_IS_SET }}`
2. `${{ secrets.SECRET_IS_NOT_SET }}`)
This commit will update the related section of the docs to reference a
single secret (`${{ secrets.SECRET_IS_SET }}`), and will update the
`if:` conditionals to compare with empty strings as suggested.
* 🔒 Add missing `{% raw %}`/`{% endraw %}`
github/docs#6861
github/docs#12722
Some `${{ }}` values were converted to `$` in the preview environment.
Adding `{% raw %}`/`{% endraw %}` will preserve the raw value.
* 🔒 Match variable and secret names in examples
github/docs#6861
https://github.com/github/docs/pull/12722#discussion_r801011000
This PR adds an example of how to use secrets with `if:` conditionals.
The reviewer suggested comparing variable values with empty strings to
make the `if:` conditionals clearer.
Commit cecdf00 updated the secret names accordingly, but the names of
the secret and environment variable may still have been confusing.
This commit will update the secret and environment variable names to
match the cross-referenced example on the "Encrypted secrets" page.
* Update content/actions/using-workflows/workflow-syntax-for-github-actions.md
Co-authored-by: hubwriter <hubwriter@github.com >
2022-03-18 14:20:40 +00:00
Benny Yen
32f3bf852d
Fix typo in using-ssh-over-the-https-port.md
2022-03-18 21:15:58 +08:00
Ramya Parimi
b412efad2e
Merge branch 'main' into fix/#14492
2022-03-18 08:03:01 -05:00
mc
28a7ce3fcb
Add overview article about supply chain security ( #25835 )
...
* add overview article
2022-03-18 10:30:41 +00:00
Martin Lopes
392432d7a2
Fixes broken links ( #26308 )
2022-03-18 16:31:12 +10:00
Martin Lopes
63978b65ee
Update workflow-commands-for-github-actions.md
2022-03-18 09:33:40 +10:00
Vanessa
c9e4ba77ec
Merge branch 'main' into fix/#14492
2022-03-18 09:25:44 +10:00
Martin Lopes
93e179940b
Merge branch 'main' into pwsh-commands
2022-03-18 09:23:02 +10:00
Jenni Christensen
9385fcb600
fixing broken link
2022-03-17 14:18:01 -07:00
Jenni Christensen
e357b2963f
Merge branch 'main' into dihydrojen-4
2022-03-17 14:06:49 -07:00
Felicity Chapman
c217c41541
Fix a typo ( #26298 )
2022-03-17 18:12:54 +00:00
Adam B
d4a3424ff0
Updating docs for new renderable in markdown and mermaid file support ( #26204 )
2022-03-17 17:42:37 +00:00
mc
7b405ec6b1
Supply chain restructuring ( #26105 )
...
* reorganize supply chain docs
2022-03-17 17:31:04 +00:00
Grace Park
2c8713037d
Move deploy keys from deployments to keys in rest pages ( #26166 )
...
* move deploy keys from deployments to keys in rest pages
* move minitocs above intro
* Update content/rest/reference/keys.md
Co-authored-by: Sarah Edwards <skedwards88@github.com >
* add to banner, add redirects from deployments
* remove deploy keys from deployments intro
* update data/reusables name
* update - to _
* update script and add redirects for subcategories turned categories
Co-authored-by: Sarah Edwards <skedwards88@github.com >
2022-03-17 17:25:12 +00:00
Sarita Iyer
0b1165ed9e
Merge branch 'main' into code-scanning-alerts-default-branch
2022-03-17 13:15:09 -04:00
mc
845c6dbb68
Merge branch 'main' into refresh-around-dependencies-#15750
2022-03-17 14:30:53 +00:00
Courtney Wilson
c327b7c8bc
Apply suggestions from code review
...
Co-authored-by: mc <42146119+mchammer01@users.noreply.github.com >
2022-03-17 09:20:38 -05:00
Ritesh Patil
c40e10ff3b
fix: clarify dependabot enable and disable funtion ( #16135 )
2022-03-17 11:24:58 +00:00
Steve Guntrip
846d374dbd
OAuth 2.0 Device Authorization Flow is opt-in
2022-03-17 08:16:07 +00:00
Martin Lopes
9176a26a56
Merge branch 'main' into pwsh-commands
2022-03-17 17:19:26 +10:00
Ritesh Patil
a0c0780ae3
fix: resolve suggested changes
2022-03-17 05:36:25 +00:00