Skip to content

Commit e3bf6fd

Browse files
authored
Branch was updated using the 'autoupdate branch' Actions workflow.
2 parents e7c5946 + 585691b commit e3bf6fd

4 files changed

Lines changed: 11 additions & 14 deletions

File tree

.github/workflows/repo-sync-stalls.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
const timeDelta = Date.now() - Date.parse(pr.created_at);
4141
const minutesOpen = timeDelta / 1000 / 60;
4242
43-
if (minutesOpen > 30) {
43+
if (minutesOpen > 180) {
4444
core.setFailed('Repo sync appears to be stalled')
4545
}
4646
})

content/actions/index.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,15 @@ featuredLinks:
2525
- /actions/reference/workflow-commands-for-github-actions
2626
- /actions/reference/environment-variables
2727
changelog:
28+
- title: Workflow visualization
29+
date: '2020-12-08'
30+
href: https://github.blog/changelog/2020-12-08-github-actions-workflow-visualization/
2831
- title: Removing set-env and add-path commands on November 16
2932
date: '2020-11-09'
3033
href: https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
3134
- title: Ubuntu-latest workflows will use Ubuntu-20.04
3235
date: '2020-10-29'
3336
href: https://github.blog/changelog/2020-10-29-github-actions-ubuntu-latest-workflows-will-use-ubuntu-20-04
34-
- title: MacOS Big Sur Preview
35-
date: '2020-10-29'
36-
href: https://github.blog/changelog/2020-10-29-github-actions-macos-big-sur-preview
37-
- title: Self-Hosted Runner Group Access Changes
38-
date: '2020-10-16'
39-
href: https://github.blog/changelog/2020-10-16-github-actions-self-hosted-runner-group-access-changes/
4037

4138
product_video: https://www.youtube-nocookie.com/embed/cP0I9w2coGU
4239

content/actions/learn-github-actions/finding-and-customizing-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ steps:
7979
8080
#### Using branches
8181
82-
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`:
82+
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`:
8383

8484
```yaml
8585
steps:

content/packages/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ featuredLinks:
1919
- /packages/guides/enabling-improved-container-support
2020
- /packages/guides/configuring-rubygems-for-use-with-github-packages
2121
changelog:
22+
- title: ghcr.io container names redirect to the container page
23+
date: '2020-12-14'
24+
href: https://github.blog/changelog/2020-12-14-ghcr-io-container-names-redirect-to-the-container-page/
25+
- title: Filter for tagged and untagged containers
26+
date: '2020-12-14'
27+
href: https://github.blog/changelog/2020-12-14-packages-can-filter-for-tagged-and-untagged-containers/
2228
- title: Packages container support is an opt-in beta
2329
date: '2020-11-17'
2430
href: https://docs.github.com/packages/getting-started-with-github-container-registry/enabling-improved-container-support
25-
- title: Organization admins access to containers
26-
date: '2020-11-16'
27-
href: https://github.blog/changelog/2020-11-16-packages-organization-admins-access-to-containers/
28-
- title: Packages now respects IP allow list settings
29-
date: '2020-11-12'
30-
href: https://github.blog/changelog/2020-11-12-packages-now-respects-ip-allow-list-settings/
3131
redirect_from:
3232
- /github/managing-packages-with-github-packages
3333
- /categories/managing-packages-with-github-package-registry

0 commit comments

Comments
 (0)