Skip to content

Commit c767551

Browse files
authored
Merge pull request #98 from crazy-max/rename-repo
rename repo to github-builder
2 parents 2323498 + bc03a0d commit c767551

File tree

6 files changed

+19
-28
lines changed

6 files changed

+19
-28
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ to the public under the [project's open source license](../LICENSE).
77

88
## Submitting a pull request
99

10-
1. [Fork](https://github.com/docker/github-builder-experimental/fork) and clone the repository
10+
1. [Fork](https://github.com/docker/github-builder/fork) and clone the repository
1111
2. Create a new branch: `git checkout -b my-branch-name`
1212
3. Make your changes
13-
4. Push to your fork and [submit a pull request](https://github.com/docker/github-builder-experimental/compare)
13+
4. Push to your fork and [submit a pull request](https://github.com/docker/github-builder/compare)
1414
5. Pat your self on the back and wait for your pull request to be reviewed and merged.
1515

1616
Here are a few things you can do that will increase the likelihood of your pull request being accepted:

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ body:
1717
description: >
1818
Make sure you've read the contributing guidelines before proceeding.
1919
options:
20-
- label: I've read the [contributing guidelines](https://github.com/docker/github-builder-experimental/blob/master/.github/CONTRIBUTING.md) and wholeheartedly agree
20+
- label: I've read the [contributing guidelines](https://github.com/docker/github-builder/blob/main/.github/CONTRIBUTING.md) and wholeheartedly agree
2121
required: true
2222

2323
- type: checkboxes

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
blank_issues_enabled: true
33
contact_links:
44
- name: Questions and Discussions
5-
url: https://github.com/docker/github-builder-experimental/discussions/new
5+
url: https://github.com/docker/github-builder/discussions/new
66
about: Use Github Discussions to ask questions and/or open discussion topics.
77
- name: Documentation
88
url: https://docs.docker.com/build/ci/github-actions/

.github/workflows/bake.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ jobs:
471471
[cache.gha.verify.policy]
472472
timestampThreshold = 1
473473
tlogThreshold = ${{ needs.prepare.outputs.privateRepo == 'true' && '0' || '1' }}
474-
subjectAlternativeName = "https://github.com/docker/github-builder-experimental/.github/workflows/bake.yml*"
474+
subjectAlternativeName = "https://github.com/docker/github-builder/.github/workflows/bake.yml*"
475475
githubWorkflowRepository = "${{ github.repository }}"
476476
issuer = "https://token.actions.githubusercontent.com"
477477
runnerEnvironment = "github-hosted"
@@ -785,7 +785,7 @@ jobs:
785785
for (const imageName of inpImageNames) {
786786
if (ecrRegistryRegex.test(imageName) || ecrPublicRegistryRegex.test(imageName)) {
787787
core.info(`Detected ECR image name: ${imageName}, adding delay to mitigate eventual consistency issue`);
788-
// FIXME: remove once https://github.com/docker/github-builder-experimental/issues/30 is resolved
788+
// FIXME: remove once https://github.com/docker/github-builder/issues/30 is resolved
789789
await new Promise(resolve => setTimeout(resolve, 5000));
790790
break;
791791
}
@@ -798,7 +798,7 @@ jobs:
798798
});
799799
800800
const verifyResults = await sigstore.verifySignedManifests(signResults, {
801-
certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/bake.yml.*$`,
801+
certificateIdentityRegexp: `^https://github.com/docker/github-builder/.github/workflows/bake.yml.*$`,
802802
retryOnManifestUnknown: true
803803
});
804804
@@ -830,7 +830,7 @@ jobs:
830830
});
831831
832832
const verifyResults = await sigstore.verifySignedArtifacts(signResults, {
833-
certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/bake.yml.*$`
833+
certificateIdentityRegexp: `^https://github.com/docker/github-builder/.github/workflows/bake.yml.*$`
834834
});
835835
836836
await core.group(`Verify commands`, async () => {

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ jobs:
407407
[cache.gha.verify.policy]
408408
timestampThreshold = 1
409409
tlogThreshold = ${{ needs.prepare.outputs.privateRepo == 'true' && '0' || '1' }}
410-
subjectAlternativeName = "https://github.com/docker/github-builder-experimental/.github/workflows/build.yml*"
410+
subjectAlternativeName = "https://github.com/docker/github-builder/.github/workflows/build.yml*"
411411
githubWorkflowRepository = "${{ github.repository }}"
412412
issuer = "https://token.actions.githubusercontent.com"
413413
runnerEnvironment = "github-hosted"
@@ -650,7 +650,7 @@ jobs:
650650
for (const imageName of inpImageNames) {
651651
if (ecrRegistryRegex.test(imageName) || ecrPublicRegistryRegex.test(imageName)) {
652652
core.info(`Detected ECR image name: ${imageName}, adding delay to mitigate eventual consistency issue`);
653-
// FIXME: remove once https://github.com/docker/github-builder-experimental/issues/30 is resolved
653+
// FIXME: remove once https://github.com/docker/github-builder/issues/30 is resolved
654654
await new Promise(resolve => setTimeout(resolve, 5000));
655655
break;
656656
}
@@ -663,7 +663,7 @@ jobs:
663663
});
664664
665665
const verifyResults = await sigstore.verifySignedManifests(signResults, {
666-
certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/build.yml.*$`,
666+
certificateIdentityRegexp: `^https://github.com/docker/github-builder/.github/workflows/build.yml.*$`,
667667
retryOnManifestUnknown: true
668668
});
669669
@@ -695,7 +695,7 @@ jobs:
695695
});
696696
697697
const verifyResults = await sigstore.verifySignedArtifacts(signResults, {
698-
certificateIdentityRegexp: `^https://github.com/docker/github-builder-experimental/.github/workflows/build.yml.*$`
698+
certificateIdentityRegexp: `^https://github.com/docker/github-builder/.github/workflows/build.yml.*$`
699699
});
700700
701701
await core.group(`Verify commands`, async () => {

README.md

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
1-
[![Test build workflow](https://img.shields.io/github/actions/workflow/status/docker/github-builder-experimental/.test-build.yml?label=test%20build&logo=github&style=flat-square)](https://github.com/docker/github-builder-experimental/actions?workflow=.test-build)
2-
[![Test bake workflow](https://img.shields.io/github/actions/workflow/status/docker/github-builder-experimental/.test-bake.yml?label=test%20bake&logo=github&style=flat-square)](https://github.com/docker/github-builder-experimental/actions?workflow=.test-bake)
3-
4-
> [!CAUTION]
5-
> Do not use it for your production workflows yet!
6-
7-
## :test_tube: Experimental
8-
9-
This repository is considered **EXPERIMENTAL** and under active development
10-
until further notice. It is subject to non-backward compatible changes or
11-
removal in any future version.
1+
[![Test build workflow](https://img.shields.io/github/actions/workflow/status/docker/github-builder/.test-build.yml?label=test%20build&logo=github&style=flat-square)](https://github.com/docker/github-builder/actions?workflow=.test-build)
2+
[![Test bake workflow](https://img.shields.io/github/actions/workflow/status/docker/github-builder/.test-bake.yml?label=test%20bake&logo=github&style=flat-square)](https://github.com/docker/github-builder/actions?workflow=.test-bake)
123

134
___
145

@@ -49,7 +40,7 @@ on:
4940
pull_request:
5041

5142
build:
52-
uses: docker/github-builder-experimental/.github/workflows/build.yml@main
43+
uses: docker/github-builder/.github/workflows/build.yml@v1
5344
permissions:
5445
contents: read # to fetch the repository content
5546
id-token: write # for signing attestation(s) with GitHub OIDC Token
@@ -174,7 +165,7 @@ on:
174165
pull_request:
175166
176167
build:
177-
uses: docker/github-builder-experimental/.github/workflows/build.yml@main
168+
uses: docker/github-builder/.github/workflows/build.yml@v1
178169
permissions:
179170
contents: read # to fetch the repository content
180171
id-token: write # for signing attestation(s) with GitHub OIDC Token
@@ -197,7 +188,7 @@ on:
197188
# in the `build` job and can be omitted. It's provided here as an example of
198189
# how to use the `verify.yml` reusable workflow.
199190
build-verify:
200-
uses: docker/github-builder-experimental/.github/workflows/verify.yml@main
191+
uses: docker/github-builder/.github/workflows/verify.yml@v1
201192
if: ${{ github.event_name != 'pull_request' }}
202193
needs:
203194
- build
@@ -286,7 +277,7 @@ on:
286277
pull_request:
287278
288279
bake:
289-
uses: docker/github-builder-experimental/.github/workflows/bake.yml@main
280+
uses: docker/github-builder/.github/workflows/bake.yml@v1
290281
permissions:
291282
contents: read # to fetch the repository content
292283
id-token: write # for signing attestation(s) with GitHub OIDC Token
@@ -308,7 +299,7 @@ on:
308299
# in the `bake` job and can be omitted. It's provided here as an example of
309300
# how to use the `verify.yml` reusable workflow.
310301
bake-verify:
311-
uses: docker/github-builder-experimental/.github/workflows/verify.yml@main
302+
uses: docker/github-builder/.github/workflows/verify.yml@v1
312303
if: ${{ github.event_name != 'pull_request' }}
313304
needs:
314305
- bake

0 commit comments

Comments
 (0)