Skip to content

Commit

Permalink
Merge pull request #85 from infosiftr/no-subset-branch
Browse files Browse the repository at this point in the history
Switch from the `subset` branch back to `main`
  • Loading branch information
tianon authored Oct 14, 2024
2 parents e22b5e2 + 89d67c4 commit 342b4f6
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .test/provenance/out.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"buildType": "https://actions.github.io/buildtypes/workflow/v1",
"externalParameters": {
"workflow": {
"ref": "refs/heads/subset",
"ref": "refs/heads/main",
"repository": "https://github.com/docker-library/meta",
"path": ".github/workflows/build.yml",
"digest": {
Expand All @@ -98,7 +98,7 @@
},
"resolvedDependencies": [
{
"uri": "git+https://github.com/docker-library/meta@refs/heads/subset",
"uri": "git+https://github.com/docker-library/meta@refs/heads/main",
"digest": {
"gitCommit": "0123456789abcdef0123456789abcdef01234567"
}
Expand All @@ -107,7 +107,7 @@
},
"runDetails": {
"builder": {
"id": "https://github.com/docker-library/meta/.github/workflows/build.yml@refs/heads/subset"
"id": "https://github.com/docker-library/meta/.github/workflows/build.yml@refs/heads/main"
},
"metadata": {
"invocationId": "https://github.com/docker-library/meta/actions/runs/9001/attempts/2"
Expand Down Expand Up @@ -227,7 +227,7 @@
"buildType": "https://actions.github.io/buildtypes/workflow/v1",
"externalParameters": {
"workflow": {
"ref": "refs/heads/subset",
"ref": "refs/heads/main",
"repository": "https://github.com/docker-library/meta",
"path": ".github/workflows/build.yml",
"digest": {
Expand All @@ -251,7 +251,7 @@
},
"resolvedDependencies": [
{
"uri": "git+https://github.com/docker-library/meta@refs/heads/subset",
"uri": "git+https://github.com/docker-library/meta@refs/heads/main",
"digest": {
"gitCommit": "0123456789abcdef0123456789abcdef01234567"
}
Expand All @@ -260,7 +260,7 @@
},
"runDetails": {
"builder": {
"id": "https://github.com/docker-library/meta/.github/workflows/build.yml@refs/heads/subset"
"id": "https://github.com/docker-library/meta/.github/workflows/build.yml@refs/heads/main"
},
"metadata": {
"invocationId": "https://github.com/docker-library/meta/actions/runs/9001/attempts/2"
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ node('multiarch-' + env.BASHBREW_ARCH) { ansiColor('xterm') {
url: 'https://github.com/docker-library/meta.git',
name: 'origin',
]],
branches: [[name: '*/subset']], // TODO back to main
branches: [[name: '*/main']],
extensions: [
submodule(
parentCredentials: true,
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.deploy
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ node('put-shared') { ansiColor('xterm') {
url: 'https://github.com/docker-library/meta.git',
name: 'origin',
]],
branches: [[name: '*/subset']], // TODO back to main
branches: [[name: '*/main']],
extensions: [
submodule(
parentCredentials: true,
Expand Down
4 changes: 2 additions & 2 deletions Jenkinsfile.meta
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ node {
credentialsId: 'docker-library-bot',
name: 'origin',
]],
branches: [[name: '*/subset']], // TODO back to main
branches: [[name: '*/main']],
extensions: [
submodule(
recursiveSubmodules: true,
Expand Down Expand Up @@ -101,7 +101,7 @@ node {
}
sshagent(['docker-library-bot']) {
stage('Push') {
sh 'git push origin HEAD:subset' // TODO back to main
sh 'git push origin HEAD:main'
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.trigger
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ node {
url: 'https://github.com/docker-library/meta.git',
name: 'origin',
]],
branches: [[name: '*/subset']], // TODO back to main
branches: [[name: '*/main']],
extensions: [
submodule(
parentCredentials: true,
Expand Down
2 changes: 1 addition & 1 deletion jenkins.jq
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def crane_deploy_commands:
# output: json object (to trigger the build on GitHub Actions)
def gha_payload:
{
ref: "subset", # TODO back to main
ref: "main",
inputs: (
{
buildId: .buildId,
Expand Down

0 comments on commit 342b4f6

Please sign in to comment.