Skip to content

Commit 1b36586

Browse files
committed
Rename repository: add-new-issues-to-project-column -> github-actions-automate-projects
1 parent 9fec0b3 commit 1b36586

File tree

7 files changed

+25
-24
lines changed

7 files changed

+25
-24
lines changed

.github/workflows/add-new-issues-to-project-column.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: add-new-issues-to-repository-based-project-column
8-
uses: docker://takanabe/add-new-issues-to-project-column:v0.0.1
8+
uses: docker://takanabe/github-actions-automate-projects:sandbox
99
if: github.event_name == 'issues' && github.event.action == 'opened'
1010
env:
1111
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12-
GITHUB_PROJECT_URL: https://github.com/takanabe/add-new-issues-to-project-column/projects/1
13-
GITHUB_PROJECT_COLUMN_NAME: To do
12+
GITHUB_PROJECT_URL: https://github.com/takanabe/github-actions-automate-projects/projects/1
13+
GITHUB_PROJECT_COLUMN_NAME: To do

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@
1313

1414
main
1515
add-new-issues-to-project-column
16+
github-actions-automate-projects
1617
.vscode/launch.json

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM takanabe/add-new-issues-to-project-column:0.1
1+
FROM takanabe/github-actions-automate-projects:sandbox
22

33
LABEL "com.github.actions.name"="Add new issues to a designate project column"
44
LABEL "com.github.actions.description"="GitHub Actions adding new issues to a specified project column automatically"
55
LABEL "com.github.actions.icon"="terminal"
66
LABEL "com.github.actions.color"="purple"
77

8-
LABEL "repository"="https://github.com/takanabe/add-new-issues-to-project-column"
9-
LABEL "homepage"="https://github.com/takanabe/add-new-issues-to-project-column"
8+
LABEL "repository"="https://github.com/takanabe/github-actions-automate-projects"
9+
LABEL "homepage"="https://github.com/takanabe/github-actions-automate-projects"
1010
LABEL "maintainer"="Takayuki Watanabe <[email protected]>"
1111

12-
CMD ["/app/main"]
12+
CMD ["/app/main"]

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
IMAGE_NAME=add-new-issues-to-project-column
2-
DOCKER_REPO=takanabe/add-new-issues-to-project-column
1+
IMAGE_NAME=github-actions-automate-projects
2+
DOCKER_REPO=takanabe/github-actions-automate-projects
33
TAG_NAME=sandbox
44

55
#

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# add-issues-to-project-column
1+
# github-actions-automate-projects
22

3-
[dockerhub]: https://hub.docker.com/r/takanabe/add-new-issues-to-project-column
4-
[license]: https://github.com/takanabe/add-new-issues-to-project-column/blob/master/LICENSE
3+
[dockerhub]: https://hub.docker.com/r/takanabe/github-actions-automate-projects
4+
[license]: https://github.com/takanabe/github-actions-automate-projects/blob/master/LICENSE
55

6-
[![Docker Automated build](https://img.shields.io/docker/automated/takanabe/add-new-issues-to-project-column.svg?logo=docker)][dockerhub]
7-
[![License](https://img.shields.io/github/license/takanabe/add-new-issues-to-project-column.svg)][license]
6+
[![Docker Automated build](https://img.shields.io/docker/automated/takanabe/github-actions-automate-projects.svg?logo=docker)][dockerhub]
7+
[![License](https://img.shields.io/github/license/takanabe/github-actions-automate-projects.svg)][license]
88

99
GitHub Actions adding GitHub Issues & Pull requests to a specified GitHub Project column automatically :recycle:. This GitHub Action is inspired by https://github.com/masutaka/github-actions-all-in-one-project
1010

@@ -20,22 +20,22 @@ For any type of GitHub Projects, you need to change `GITHUB_PROJECT_URL` and `GI
2020
name: Add a new GitHub Project card linked to a GitHub issue to a specified project column
2121
on: [issues, pull_request]
2222
jobs:
23-
add-new-issues-to-project-column:
23+
github-actions-automate-projects:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: add-new-issues-to-repository-based-project-column
27-
uses: docker://takanabe/add-new-issues-to-project-column:v0.0.1
27+
uses: docker://takanabe/github-actions-automate-projects:v0.0.1
2828
if: github.event_name == 'issues' && github.event.action == 'opened'
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31-
GITHUB_PROJECT_URL: https://github.com/takanabe/add-new-issues-to-project-column/projects/1
31+
GITHUB_PROJECT_URL: https://github.com/takanabe/github-actions-automate-projects/projects/1
3232
GITHUB_PROJECT_COLUMN_NAME: To do
3333
- name: add-new-prs-to-repository-based-project-column
34-
uses: docker://takanabe/add-new-issues-to-project-column:v0.0.1
34+
uses: docker://takanabe/github-actions-automate-projects:v0.0.1
3535
if: github.event_name == 'pull_request' && github.event.action == 'opened'
3636
env:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38-
GITHUB_PROJECT_URL: https://github.com/takanabe/add-new-issues-to-project-column/projects/1
38+
GITHUB_PROJECT_URL: https://github.com/takanabe/github-actions-automate-projects/projects/1
3939
GITHUB_PROJECT_COLUMN_NAME: To do
4040
```
4141
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- name: add-new-issues-to-organization-based-project-column
55-
uses: docker://takanabe/add-new-issues-to-project-column:v0.0.1
55+
uses: docker://takanabe/github-actions-automate-projects:v0.0.1
5656
if: github.event_name == 'issues' && github.event.action == 'opened'
5757
env:
5858
GITHUB_TOKEN: ${{ secrets.GITHUB_PERSONAL_TOKEN_TO_ADD_PROJECT }}
@@ -101,8 +101,8 @@ Change `IMAGE_NAME`, `DOCKER_REPO` and `TAG_NAME` in `Makefile` based on your Do
101101
make
102102
```
103103

104-
Except for `sandbox` tag, [`takanabe/add-new-issues-to-project-column`](https://hub.docker.com/r/takanabe/add-new-issues-to-project-column/tags) lists production ready Docker images matching [GitHub release tag](https://github.com/takanabe/add-new-issues-to-project-column/releases).
104+
Except for `sandbox` tag, [`takanabe/github-actions-automate-projects`](https://hub.docker.com/r/takanabe/github-actions-automate-projects/tags) lists production ready Docker images matching [GitHub release tag](https://github.com/takanabe/github-actions-automate-projects/releases).
105105

106106
## License
107107

108-
[Apache 2.0](https://github.com/takanabe/add-new-issues-to-project-column/blob/master/LICENSE)
108+
[Apache 2.0](https://github.com/takanabe/github-actions-automate-projects/blob/master/LICENSE)

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/takanabe/add-new-issues-to-project-column
1+
module github.com/takanabe/github-actions-automate-projects
22

33
require (
44
github.com/google/go-github/v25 v25.0.4

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func main() {
2020
infoLog("Event name: %s\n", eventName)
2121
if !(eventName == "issues" || eventName == "pull_request") {
2222
infoLog("This GitHub event is neither issues nor pull_requests. Stop executing this action.")
23-
infoLog("Please add 'if github.event_name' to the workflow yaml by following https://github.com/takanabe/add-new-issues-to-project-column/blob/master/README.md ")
23+
infoLog("Please add 'if github.event_name' to the workflow yaml by following https://github.com/takanabe/github-actions-automate-projects/blob/master/README.md ")
2424
os.Exit(0)
2525
}
2626

0 commit comments

Comments
 (0)