From 46a22138b9e412ed7c18e6d67e9c9b3276c01677 Mon Sep 17 00:00:00 2001 From: fraggle Date: Sun, 11 Jan 2026 19:02:45 -0400 Subject: [PATCH] Remove GitHub-specific files and references - Remove GitHub Actions CI workflow - Update CONTRIBUTING.md to be forge-agnostic (Gitea/GitLab/etc) - This is a Git project, not GitHub-specific --- .github/workflows/build.yml | 44 ------------------------------------- CONTRIBUTING.md | 6 ++--- 2 files changed, 3 insertions(+), 47 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index cf6d4c8..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Build and Test - -on: - push: - branches: [ main, master ] - pull_request: - branches: [ main, master ] - -jobs: - build: - # ubuntu-latest is just the GitHub Actions runner OS - PassAGE works on any Linux/Unix distro - runs-on: ubuntu-latest - strategy: - matrix: - go-version: ['1.21', '1.22'] - - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: ${{ matrix.go-version }} - - - name: Verify dependencies - run: go mod verify - - - name: Download dependencies - run: go mod download - - - name: Build - run: go build -v -o passage . - - - name: Test - run: go test -v ./... - - - name: Build release version - run: go build -trimpath -ldflags "-s -w" -o passage-release . - - - name: Check manpage builds - run: | - sudo apt-get update - sudo apt-get install -y pandoc - make man diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 711c8a9..82fc6a9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,11 +4,11 @@ Thank you for your interest in contributing to PassAGE! ## Getting Started -1. **Fork the repository** -2. **Clone your fork** locally +1. **Fork the repository** (if using a forge like Gitea) +2. **Clone the repository** locally 3. **Create a branch** for your changes 4. **Make your changes** and test them -5. **Submit a pull request** +5. **Submit a merge request** or push your changes ## Development Setup