Skip to content

Commit 29fd75f

Browse files
committed
Change artembilan org to spring-io
1 parent cbf1e72 commit 29fd75f

11 files changed

+19
-19
lines changed

.github/workflows/spring-artifactory-gradle-release-staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: Checkout Common Repo
5959
uses: actions/checkout@v4
6060
with:
61-
repository: artembilan/spring-github-workflows
61+
repository: spring-io/spring-github-workflows
6262
path: build
6363
show-progress: false
6464

.github/workflows/spring-artifactory-gradle-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Checkout Common Repo
4141
uses: actions/checkout@v4
4242
with:
43-
repository: artembilan/spring-github-workflows
43+
repository: spring-io/spring-github-workflows
4444
path: build
4545
show-progress: false
4646

.github/workflows/spring-artifactory-promote-central.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- uses: actions/checkout@v4
4040
with:
41-
repository: artembilan/spring-github-workflows
41+
repository: spring-io/spring-github-workflows
4242
show-progress: false
4343

4444
- uses: jfrog/setup-jfrog-cli@v3

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ They perform Gradle `check` task and Maven `verify` goal, respectively.
3333
The caller workflow is as simple as follows.
3434

3535
#### Gradle Pull Request caller workflow:
36-
https://github.com/artembilan/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/pr-build-gradle.yml#L1-L10
36+
https://github.com/spring-io/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/pr-build-gradle.yml#L1-L10
3737

3838
#### Maven Pull Request caller workflow:
39-
https://github.com/artembilan/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/pr-build-maven.yml#L1-L10
39+
https://github.com/spring-io/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/pr-build-maven.yml#L1-L10
4040

4141
You can add more branches to react for pull request events.
4242

@@ -45,10 +45,10 @@ They use JFrog CLI action to be able to publish artifacts into `libs-snapshot-lo
4545
The Gradle workflow can be supplied with Gradle Enterprise secrets.
4646

4747
#### Gradle SNAPSHOT caller workflow:
48-
https://github.com/artembilan/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/ci-snapshot-gradle.yml#L1-L18
48+
https://github.com/spring-io/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/ci-snapshot-gradle.yml#L1-L18
4949

5050
#### Maven SNAPSHOT caller workflow:
51-
https://github.com/artembilan/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/ci-snapshot-maven.yml#L1-L13
51+
https://github.com/spring-io/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/ci-snapshot-maven.yml#L1-L13
5252

5353
## Release Workflow
5454

@@ -76,7 +76,7 @@ The `gh release create` command is performed on a tag for just released version.
7676
And in the end the milestone is closed and specific Slack channel is notified about release (if `SPRING_RELEASE_SLACK_WEBHOOK_URL` secret is present in the repository).
7777

7878
#### Example of Release caller workflow:
79-
https://github.com/artembilan/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/release.yml#L1-L25
79+
https://github.com/spring-io/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/release.yml#L1-L25
8080

8181
Such a workflow must be on every branch which is supposed to be released via GitHub actions.
8282

@@ -88,7 +88,7 @@ In the end you just need to go to the `Actions` tab on your project, press `Run
8888
Such a release workflow can also be scheduled (`cron`, fo example) against branches matrix.
8989

9090
#### Scheduler workflow example:
91-
https://github.com/artembilan/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/schedule-releases.yml#L1-L19
91+
https://github.com/spring-io/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/schedule-releases.yml#L1-L19
9292

9393
> **Warning**
9494
> The [spring-artifactory-gradle-release.yml](.github/workflows/spring-artifactory-gradle-release.yml) (and [spring-artifactory-maven-release.yml](.github/workflows/spring-artifactory-maven-release.yml)) already uses 3 of 4 levels of nested reusable workflows.
@@ -102,15 +102,15 @@ For example, [Spring Integration for AWS](https://github.com/spring-projects/spr
102102
Other projects may check out their samples repository and setup release version to perform smoke tests against just staged artifacts.
103103

104104
#### Verify staged workflow sample:
105-
https://github.com/artembilan/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/verify-staged-artifacts.yml#L1-L28
105+
https://github.com/spring-io/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/verify-staged-artifacts.yml#L1-L28
106106

107107
## Backport GitHub Issue Workflow
108108

109109
The [spring-backport-issue.yml](.github/workflows/spring-backport-issue.yml) uses [Spring Backport Bot](https://github.com/spring-io/backport-bot) to create a back-port issue according to the event configured in a caller workflow.
110110
See its documentation for labeling convention and respective GitHub events for calling this workflow.
111111

112112
#### Backport Issue caller workflow example:
113-
https://github.com/artembilan/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/backport-issue.yml#L1-L16
113+
https://github.com/spring-io/spring-github-workflows/blob/78b29123a17655f019d800690cc906d692f836a9/samples/backport-issue.yml#L1-L16
114114

115115
## Dependabot Support
116116

@@ -129,7 +129,7 @@ The `spring-merge-dependabot-pr` workflow does these modifications to the Depend
129129
- And if milestone is scheduled, the pull request is queued for auto-merging after required checks have passed.
130130

131131
#### Dependabot merge pull request workflow example:
132-
https://github.com/artembilan/spring-github-workflows/blob/710bf1214450ffb9a4d3a1cfbe12755ed2d59edc/samples/merge-dependabot-pr.yml#L1-L14
132+
https://github.com/spring-io/spring-github-workflows/blob/710bf1214450ffb9a4d3a1cfbe12755ed2d59edc/samples/merge-dependabot-pr.yml#L1-L14
133133

134134
## Gradle and Artifactory
135135

samples/backport-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ on:
1111

1212
jobs:
1313
backport-issue:
14-
uses: artembilan/spring-github-workflows/.github/workflows/spring-backport-issue.yml@main
14+
uses: spring-io/spring-github-workflows/.github/workflows/spring-backport-issue.yml@main
1515
secrets:
1616
GH_ACTIONS_REPO_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}

samples/ci-snapshot-gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build-snapshot:
11-
uses: artembilan/spring-github-workflows/.github/workflows/spring-artifactory-gradle-snapshot.yml@main
11+
uses: spring-io/spring-github-workflows/.github/workflows/spring-artifactory-gradle-snapshot.yml@main
1212
with:
1313
gradleTasks: dist
1414
secrets:

samples/ci-snapshot-maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ on:
88

99
jobs:
1010
build_snapshot:
11-
uses: artembilan/spring-github-workflows/.github/workflows/spring-artifactory-maven-snapshot.yml@main
11+
uses: spring-io/spring-github-workflows/.github/workflows/spring-artifactory-maven-snapshot.yml@main
1212
secrets:
1313
JF_ARTIFACTORY_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }}

samples/merge-dependabot-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
merge-dependabot-pr:
1212
permissions: write-all
1313

14-
uses: artembilan/spring-github-workflows/.github/workflows/spring-merge-dependabot-pr.yml@main
14+
uses: spring-io/spring-github-workflows/.github/workflows/spring-merge-dependabot-pr.yml@main

samples/pr-build-gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ on:
77

88
jobs:
99
build-pull-request:
10-
uses: artembilan/spring-github-workflows/.github/workflows/spring-gradle-pull-request-build.yml@main
10+
uses: spring-io/spring-github-workflows/.github/workflows/spring-gradle-pull-request-build.yml@main

samples/pr-build-maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ on:
77

88
jobs:
99
build:
10-
uses: artembilan/spring-github-workflows/.github/workflows/spring-maven-pull-request-build.yml@main
10+
uses: spring-io/spring-github-workflows/.github/workflows/spring-maven-pull-request-build.yml@main

0 commit comments

Comments
 (0)