From 4db1f8872a87f93c2e63103b9824688ede0462bd Mon Sep 17 00:00:00 2001 From: Nic Cope Date: Tue, 28 Jan 2025 16:09:00 -0800 Subject: [PATCH 1/2] Revert "Add a new github workflow 'tag'" This reverts commit 350319367844b57058e5f887ee1a46e9cbbfa0f9. We don't use the tag workflow for functions. Instead we create a new tag via the GitHub UI when creating a release. Signed-off-by: Nic Cope --- .github/workflows/tag.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/tag.yml diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml deleted file mode 100644 index f2aca68..0000000 --- a/.github/workflows/tag.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Tag - -on: - workflow_dispatch: - inputs: - version: - description: 'Release version (e.g. v0.1.0)' - required: true - message: - description: 'Tag message' - required: true - -jobs: - create-tag: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - - name: Create Tag - uses: negz/create-tag@39bae1e0932567a58c20dea5a1a0d18358503320 # v1 - with: - version: ${{ github.event.inputs.version }} - message: ${{ github.event.inputs.message }} - token: ${{ secrets.GITHUB_TOKEN }} From d6dc6bacf167bf78d824b2c298a17978a3641e7e Mon Sep 17 00:00:00 2001 From: Nic Cope Date: Tue, 28 Jan 2025 16:12:16 -0800 Subject: [PATCH 2/2] Add Steven and Philippe to OWNERS and CODEOWNERS They already have maintain perms on this repo, but we only recently added the OWNERS files. Signed-off-by: Nic Cope --- CODEOWNERS | 2 +- OWNERS.md | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CODEOWNERS b/CODEOWNERS index d152911..a38d819 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -19,4 +19,4 @@ # See also OWNERS.md for governance details # Fallback owners -* @sergenyalcin @turkenf @negz +* @sergenyalcin @turkenf @negz @stevendborrelli @phisco diff --git a/OWNERS.md b/OWNERS.md index 765224c..caabd9c 100644 --- a/OWNERS.md +++ b/OWNERS.md @@ -11,8 +11,10 @@ This page lists all maintainers for **this** repository. Each repository in the repository maintainers in their own `OWNERS.md` file. ## Maintainers -* Nic Cope ([negz](https://github.com/negz)) -* Sergen Yalcin ([sergenyalcin](https://github.com/sergenyalcin)) -* Fatih Turken ([turkenf](https://github.com/turkenf)) +* Nic Cope ([negz](https://github.com/negz)) +* Sergen Yalcin ([sergenyalcin](https://github.com/sergenyalcin)) +* Fatih Turken ([turkenf](https://github.com/turkenf)) +* Steven Borrelli ([stevendborrelli](https://github.com/stevendborrelli)) +* Philippe Scorsolini ([phisco](https://github.com/phisco)) See [CODEOWNERS](./CODEOWNERS) for automatic PR assignment.