-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#59 Copy improvements from template-go
- Loading branch information
Showing
11 changed files
with
168 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# Workflows | ||
|
||
## add-labels-standardized.yaml | ||
|
||
When issues are opened, | ||
this action adds appropriate labels to the issue. | ||
(e.g. "triage", "customer-submission") | ||
|
||
- [Add Labels Standardized GitHub Action] | ||
- Uses: [senzing-factory/build-resources/.../add-labels-to-issue.yaml] | ||
|
||
## add-to-project-garage-dependabot.yaml | ||
|
||
When a Dependabot Pull Request (PR) is made against `main` branch, | ||
this action adds the PR to the "Garage" project board as "In Progress". | ||
|
||
- [Add to Project Garage Dependabot GitHub Action] | ||
- Uses: [senzing-factory/build-resources/.../add-to-project-dependabot.yaml] | ||
|
||
## add-to-project-garage.yaml | ||
|
||
When an issue is created, | ||
this action adds the issue to the "Garage" board as "Backlog". | ||
|
||
- [Add to Project Garage GitHub Action] | ||
- Uses: [senzing-factory/build-resources/.../add-to-project.yaml] | ||
|
||
## dependabot-approve-and-merge.yaml | ||
|
||
When a Dependabot Pull Request (PR) is made against the `main` branch, | ||
this action determines if it should be automatically approved and merged into the `main` branch. | ||
Once this action occurs [move-pr-to-done-dependabot.yaml] moves the PR on the "Garage" project board to "Done". | ||
|
||
- [Dependabot Approve and Merge GitHub Action] | ||
- Uses: [senzing-factory/build-resources/.../dependabot-approve-and-merge.yaml] | ||
|
||
|
||
## lint-workflows.yaml | ||
|
||
When a change is committed to GitHub or a Pull Request is made against the `main` branch, | ||
this action runs [super-linter] to run multiple linters against the code. | ||
|
||
- [Lint Workflows GitHub Action] | ||
- Configuration: | ||
- [.checkov.yaml] | ||
- [.jscpd.json] | ||
- [.yaml-lint.yml] | ||
- Uses: [senzing-factory/build-resources/.../lint-workflows.yaml] | ||
|
||
## move-pr-to-done-dependabot.yaml | ||
|
||
When a Pull Request is merged into the `main` branch, | ||
this action moves the PR on the "Garage" project board to "Done". | ||
|
||
- [Move PR to Done Dependabot GitHub Action] | ||
- Uses: [senzing-factory/build-resources/.../move-pr-to-done-dependabot.yaml] | ||
|
||
[.checkov.yaml]: ../linters/README.md#checkovyaml | ||
[.golangci.yaml]: ../linters/README.md#golangciyaml | ||
[.jscpd.json]: ../linters/README.md#jscpdjson | ||
[.yaml-lint.yml]: ../linters/README.md#yaml-lintyml | ||
[Add Labels Standardized GitHub Action]: add-labels-standardized.yaml | ||
[Add to Project Garage Dependabot GitHub Action]: add-to-project-garage-dependabot.yaml | ||
[Add to Project Garage GitHub Action]: add-to-project-garage.yaml | ||
[Dependabot Approve and Merge GitHub Action]: dependabot-approve-and-merge.yaml | ||
[Docker Build Container GitHub Action]: docker-build-container.yaml | ||
[Docker Push Containers to DockerHub GitHub Action]: docker-push-containers-to-dockerhub.yaml | ||
[DockerHub]: https://hub.docker.com/ | ||
[Go Proxy Pull GitHub Action]: go-proxy-pull.yaml | ||
[Go Test Darwin GitHub Action]: go-test-darwin.yaml | ||
[Go Test Linux GitHub Action]: go-test-linux.yaml | ||
[Go Test Windows GitHub Action]: go-test-windows.yaml | ||
[Go]: https://go.dev/ | ||
[Golangci Lint GitHub Action]: golangci-lint.yaml | ||
[Lint Workflows GitHub Action]: lint-workflows.yaml | ||
[Make Go GitHub File GitHub Action]: make-go-github-file.yaml | ||
[Make Go Tag GitHub Action]: make-go-tag.yaml | ||
[Move PR to Done Dependabot GitHub Action]: move-pr-to-done-dependabot.yaml | ||
[Semantic Version]: https://semver.org/ | ||
[actions/checkout]: https://github.com/actions/checkout | ||
[actions/setup-go]: https://github.com/actions/setup-go | ||
[actions/upload-artifact]: https://github.com/actions/upload-artifact | ||
[andrewslotin/go-proxy-pull-action]: https://github.com/andrewslotin/go-proxy-pull-action | ||
[github.go]: ../../cmd/github.go | ||
[golangci-lint]: https://github.com/golangci/golangci-lint | ||
[golangci/golangci-lint-action]: https://github.com/golangci/golangci-lint-action | ||
[gotesttools/gotestfmt-action]: https://github.com/gotesttools/gotestfmt-action | ||
[move-pr-to-done-dependabot.yaml]: move-pr-to-done-dependabotyaml | ||
[senzing-factory/build-resources/.../add-labels-to-issue.yaml]: https://github.com/senzing-factory/build-resources/blob/main/.github/workflows/add-labels-to-issue.yaml | ||
[senzing-factory/build-resources/.../add-to-project-dependabot.yaml]: https://github.com/senzing-factory/build-resources/blob/main/.github/workflows/add-to-project-dependabot.yaml | ||
[senzing-factory/build-resources/.../add-to-project.yaml]: https://github.com/senzing-factory/build-resources/blob/main/.github/workflows/add-to-project.yaml | ||
[senzing-factory/build-resources/.../dependabot-approve-and-merge.yaml]: https://github.com/senzing-factory/build-resources/blob/main/.github/workflows/dependabot-approve-and-merge.yaml | ||
[senzing-factory/build-resources/.../go-coverage.yaml]: https://github.com/senzing-factory/build-resources/blob/main/.github/workflows/go-coverage.yaml | ||
[senzing-factory/build-resources/.../lint-workflows.yaml]: https://github.com/senzing-factory/build-resources/blob/main/.github/workflows/lint-workflows.yaml | ||
[senzing-factory/build-resources/.../make-go-github-file.yaml]: https://github.com/senzing-factory/build-resources/blob/main/.github/workflows/make-go-github-file.yaml | ||
[senzing-factory/build-resources/.../move-pr-to-done-dependabot.yaml]: https://github.com/senzing-factory/build-resources/blob/main/.github/workflows/move-pr-to-done-dependabot.yaml | ||
[senzing-factory/github-action-docker-buildx-build]: https://github.com/senzing-factory/github-action-docker-buildx-build | ||
[senzing-factory/github-action-install-senzing-api]: https://github.com/senzing-factory/github-action-install-senzing-api | ||
[senzing-factory/github-action-make-go-tag]: https://github.com/senzing-factory/github-action-make-go-tag | ||
[super-linter]: https://github.com/super-linter/super-linter | ||
[testcoverage.yaml]: ../coverage/README.md#testcoverageyaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: add labels standardized | ||
name: Add labels standardized | ||
|
||
on: | ||
issues: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: add to project garage dependabot | ||
name: Add to project garage dependabot | ||
|
||
on: | ||
pull_request: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: add to project garage | ||
name: Add to project garage | ||
|
||
on: | ||
issues: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: dependabot approve and merge | ||
name: Dependabot approve and merge | ||
|
||
on: | ||
pull_request: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: lint workflows | ||
name: Lint workflows | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: move pr to done dependabot | ||
name: Move pr to done dependabot | ||
|
||
on: | ||
pull_request: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
# template-repository | ||
|
||
Placeholder for [GitHub pages](https://pages.github.com/). | ||
Placeholder for [GitHub pages]. | ||
|
||
See [https://hub.senzing.com/template-repository](https://hub.senzing.com/template-repository). | ||
See [GitHub page]. | ||
|
||
[GitHub page]: https://garage.senzing.com/template-repository | ||
[GitHub pages]: https://pages.github.com/ |