From 09aaf2cf9376d736a7a662f311f72970cdcac5f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20=C5=BDu=C5=BEak?= Date: Wed, 16 Dec 2020 17:55:26 +0100 Subject: [PATCH 1/3] Remove unnecessary word / typo (#17007) Fixes https://github.com/github/docs-content/issues/3097 Co-authored-by: Chiedo John <2156688+chiedo@users.noreply.github.com> Co-authored-by: Laura Coursen --- .../learn-github-actions/finding-and-customizing-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/learn-github-actions/finding-and-customizing-actions.md b/content/actions/learn-github-actions/finding-and-customizing-actions.md index e6fb2043fc..65f7193727 100644 --- a/content/actions/learn-github-actions/finding-and-customizing-actions.md +++ b/content/actions/learn-github-actions/finding-and-customizing-actions.md @@ -79,7 +79,7 @@ steps: #### Using branches -Referring to a specific branch means that the action will always use include the latest updates on the target branch, but can create problems if those updates include breaking changes. This example targets a branch named `@main`: +Referring to a specific branch means that the action will always use the latest updates on the target branch, but can create problems if those updates include breaking changes. This example targets a branch named `@main`: ```yaml steps: From d9f2917f4a9977a1593b052ecf7b2568ea63554a Mon Sep 17 00:00:00 2001 From: Cynthia Rich Date: Wed, 16 Dec 2020 12:09:23 -0500 Subject: [PATCH 2/3] Update landing pages with recent changelog updates (#16946) * add actions changelog items * update packages changelogs --- content/actions/index.md | 9 +++------ content/packages/index.md | 12 ++++++------ 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/content/actions/index.md b/content/actions/index.md index 7de361318f..593b3f462c 100644 --- a/content/actions/index.md +++ b/content/actions/index.md @@ -25,18 +25,15 @@ featuredLinks: - /actions/reference/workflow-commands-for-github-actions - /actions/reference/environment-variables changelog: + - title: Workflow visualization + date: '2020-12-08' + href: https://github.blog/changelog/2020-12-08-github-actions-workflow-visualization/ - title: Removing set-env and add-path commands on November 16 date: '2020-11-09' href: https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/ - title: Ubuntu-latest workflows will use Ubuntu-20.04 date: '2020-10-29' href: https://github.blog/changelog/2020-10-29-github-actions-ubuntu-latest-workflows-will-use-ubuntu-20-04 - - title: MacOS Big Sur Preview - date: '2020-10-29' - href: https://github.blog/changelog/2020-10-29-github-actions-macos-big-sur-preview - - title: Self-Hosted Runner Group Access Changes - date: '2020-10-16' - href: https://github.blog/changelog/2020-10-16-github-actions-self-hosted-runner-group-access-changes/ product_video: https://www.youtube-nocookie.com/embed/cP0I9w2coGU diff --git a/content/packages/index.md b/content/packages/index.md index da52606f5d..6460466af0 100644 --- a/content/packages/index.md +++ b/content/packages/index.md @@ -19,15 +19,15 @@ featuredLinks: - /packages/guides/enabling-improved-container-support - /packages/guides/configuring-rubygems-for-use-with-github-packages changelog: + - title: ghcr.io container names redirect to the container page + date: '2020-12-14' + href: https://github.blog/changelog/2020-12-14-ghcr-io-container-names-redirect-to-the-container-page/ + - title: Filter for tagged and untagged containers + date: '2020-12-14' + href: https://github.blog/changelog/2020-12-14-packages-can-filter-for-tagged-and-untagged-containers/ - title: Packages container support is an opt-in beta date: '2020-11-17' href: https://docs.github.com/packages/getting-started-with-github-container-registry/enabling-improved-container-support - - title: Organization admins access to containers - date: '2020-11-16' - href: https://github.blog/changelog/2020-11-16-packages-organization-admins-access-to-containers/ - - title: Packages now respects IP allow list settings - date: '2020-11-12' - href: https://github.blog/changelog/2020-11-12-packages-now-respects-ip-allow-list-settings/ redirect_from: - /github/managing-packages-with-github-packages - /categories/managing-packages-with-github-package-registry From 585691b928badb00b335e41bf04df8928b6014bd Mon Sep 17 00:00:00 2001 From: Chiedo John <2156688+chiedo@users.noreply.github.com> Date: Wed, 16 Dec 2020 12:40:16 -0500 Subject: [PATCH 3/3] Make the repo sync stall check less aggressive (#17018) Co-authored-by: chiedo --- .github/workflows/repo-sync-stalls.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/repo-sync-stalls.yml b/.github/workflows/repo-sync-stalls.yml index 8b4f19ab20..bc946b9703 100644 --- a/.github/workflows/repo-sync-stalls.yml +++ b/.github/workflows/repo-sync-stalls.yml @@ -40,7 +40,7 @@ jobs: const timeDelta = Date.now() - Date.parse(pr.created_at); const minutesOpen = timeDelta / 1000 / 60; - if (minutesOpen > 30) { + if (minutesOpen > 180) { core.setFailed('Repo sync appears to be stalled') } })