Skip to content

Commit 92641f3

Browse files
authored
chore: handle renames after move to GitHub org (#25)
- [x] setup CODEOWNERS to use github/ospo-github-actions Signed-off-by: jmeridth <[email protected]>
1 parent d788c4f commit 92641f3

File tree

15 files changed

+15
-121
lines changed

15 files changed

+15
-121
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @jmeridth
1+
* @github/ospo-github-actions

.github/ISSUE_TEMPLATE/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ blank_issues_enabled: false
22

33
contact_links:
44
- name: Ask a question
5-
url: https://github.com/jmeridth/reusable-workflows/discussions/new?category=q-a
5+
url: https://github.com/github/ospo-reusable-workflows/discussions/new?category=q-a
66
about: Ask a question or start a discussion

.github/workflows/test-pr-title.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ jobs:
3030
scopes: |
3131
ci
3232
docs
33-
requireScope: true
33+
requireScope: false
3434
secrets:
3535
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
pull-requests: read
2727
uses: ./.github/workflows/release-image.yaml
2828
with:
29-
image-name: jmeridth/reusable-workflows
29+
image-name: github/ospo-reusable-workflows
3030
full-tag: ${{ needs.release.outputs.full-tag }}
3131
short-tag: ${{ needs.release.outputs.short-tag }}
3232
secrets:

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 74 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Jason Meridth
3+
Copyright (c) GitHub
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,15 @@ This is a placeholder repo for multiple GitHub Actions I use in my personal and
1313

1414
> [!CAUTION]
1515
> Check the permissions in each reusable workflow to ensure the GitHub token you pass from your calling workflow meets the required permissions. Most of the time just passing `${{ secrets.GITHUB_TOKEN }}` is sufficient.
16-
> This may require you to go to your repository settings and then Actions to `Actions Permission` and enable reusable workflows. You may also need to update `Workflow Permissions` to `Read and write permissions`.
16+
> This may require you to go to your repository settings and then Actions to `Actions Permission` and enable reusable workflows. You may also need to update `Workflow Permissions` to `Read and write permissions`.
1717
>
1818
> [Workflows](.github/workflows)
1919
20-
2120
> [!TIP]
2221
> You can reuse the following files in this repository in your own as they are used by the reusable workflows:
2322
>
2423
> - [labeler.yml](.github/labeler.yml)
2524
> - [release-drafter.yaml](.github/release-drafter.yaml)
2625
2726
> [!WARNING]
28-
> The container image generated in this repo is a placeholder, it contains no content. It uses [alpine:latest and says "Hello World"](https://github.com/jmeridth/reusable-workflows/blob/main/Dockerfile). The image creation option is for GitHub Actions who need it because their Action is not written in JavaScript/Typescript and they want to track downloads/usage.
27+
> The container image generated in this repo is a placeholder, it contains no content. It uses [alpine:latest and says "Hello World"](https://github.com/github/ospo-reusable-workflows/blob/main/Dockerfile). The image creation option is for GitHub Actions who need it because their Action is not written in JavaScript/Typescript and they want to track downloads/usage.

SECURITY.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

SUPPORT.md

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

55
This project uses GitHub issues to track bugs and feature requests. Please search the existing issues before filing new issues to avoid duplicates. For new issues, file your bug or feature request as a new issue.
66

7-
For help or questions about using this project, please file a new [Q&A Discussion](https://github.com/jmeridth/reusable-workflows/discussions/new?category=q-a).
7+
For help or questions about using this project, please file a new [Q&A Discussion](https://github.com/github/ospo-reusable-workflows/discussions/new?category=q-a).
88

99
Reusable Workflows is under active development and maintained by GitHub staff and community. We will do our best to respond to support, feature requests, and community questions in a timely manner.
1010

docs/auto-labeler.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Inputs
44

55
```yaml
6-
- uses: jmeridth/reusable-workflows/.github/workflows/auto-labeler.yml@main
6+
- uses: github/ospo-reusable-workflows/.github/workflows/auto-labeler.yml@main
77
with:
88
# The name of the configuration file to use, default is release-drafter.yml
99
# from the release-drafter/release-drafter GitHub Action

0 commit comments

Comments
 (0)