Skip to content

Commit

Permalink
fix: Remove private GHA mechanisms (#545)
Browse files Browse the repository at this point in the history
  • Loading branch information
LaikaN57 authored Jan 21, 2025
1 parent a8edf8b commit 31060f9
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 21 deletions.
1 change: 0 additions & 1 deletion .github/nextdoor.yml

This file was deleted.

12 changes: 4 additions & 8 deletions .github/workflows/main-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,11 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Run make venv
run: make venv
- run: make venv
shell: bash
- name: Run make lint
run: make lint
- run: make lint
shell: bash
- name: Run make test
run: make test
- run: make test
shell: bash
- name: Run make build
run: make build
- run: make build
shell: bash
20 changes: 16 additions & 4 deletions .github/workflows/release_drafter.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
name: release-drafter
name: Release Drafter
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
permissions:
contents: read
jobs:
drafter:
uses: Nextdoor/.github/.github/workflows/release-drafter.yml@main
secrets: inherit
update_release_draft:
permissions:
contents: write
pull-requests: read
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v6
with:
disable-autolabeler: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12 changes: 4 additions & 8 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,11 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Run make venv
run: make venv
- run: make venv
shell: bash
- name: Run make lint
run: make lint
- run: make lint
shell: bash
- name: Run make test
run: make test
- run: make test
shell: bash
- name: Run make build
run: make build
- run: make build
shell: bash

0 comments on commit 31060f9

Please sign in to comment.