Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adds workflow to dispatch docs upgrade. #287

Merged
merged 9 commits into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @corazawaf/core-developers
11 changes: 0 additions & 11 deletions .github/dependabot.yml

This file was deleted.

3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
with:
go-version: 1.19.x
go-version: 1.21.x

- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
Expand All @@ -39,7 +39,6 @@ jobs:
with:
hugo-version: 'latest'
extended: true
# extended: true

- name: Build
run: npm install
Expand Down
File renamed without changes.
86 changes: 86 additions & 0 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
name: Update

on:
pull_request:
paths:
- .github/workflows/update.yml
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
create-pr:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
with:
go-version: 1.21.x

- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
lfs: true
fetch-depth: 0 #for better blame info

- name: Get last commit of coraza
id: coraza-latest-commit
run: |
echo "long=$(gh api repos/corazawaf/coraza/commits/main -q .sha)" >> $GITHUB_OUTPUT
echo "short=$(gh api repos/corazawaf/coraza/commits/main -q .sha | cut -c 1-8)" >> $GITHUB_OUTPUT
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Pull latest coraza
run: go get -u github.com/corazawaf/coraza/v3@${{ steps.coraza-latest-commit.outputs.long }}

- name: Tests and coverage
run: go run mage.go test

- name: Generate content
run: go run mage.go generate

- name: Verify Changed files
uses: tj-actions/verify-changed-files@v20
id: verify-changed-files
with:
files: |
content/docs/*

- name: List changed files
if: ${{ github.event_name == 'pull_request' }}
env:
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }}
run: |
cat <<EOF > $GITHUB_STEP_SUMMARY
# Changed files:
$CHANGED_FILES

# PR information:
**commit-message**: docs: upgrades coraza docs to github.com/corazawaf/coraza/v3@${{ steps.coraza-latest-commit.outputs.short }}
**branch**: upgrades_coraza_${{ steps.coraza-latest-commit.outputs.short }}
**title**: docs: upgrades to latest coraza
**assignees**: ${{ github.actor }}
**body**: This PR upgrades the docs to latest coraza commit namely [${{ steps.coraza-latest-commit.outputs.short }}](https://github.com/corazawaf/coraza/tree/${{ steps.coraza-latest-commit.outputs.long }})
EOF

- name: Create Pull Request
if: ${{ github.event_name != 'pull_request' && steps.verify-changed-files.outputs.files_changed == 'true' }}
uses: peter-evans/create-pull-request@v7
id: create-pr
with:
add-paths: content/docs
commit-message: 'docs: upgrades coraza docs to ${{ steps.coraza-latest-commit.outputs.short }}'
signoff: true
branch: upgrades_coraza_${{ steps.coraza-latest-commit.outputs.short }}
title: 'docs: upgrades to latest coraza'
assignees: ${{ github.actor }}
body: |
This PR upgrades the docs to latest coraza commit namely [${{ steps.coraza-latest-commit.outputs.short }}](https://github.com/corazawaf/coraza/tree/${{ steps.coraza-latest-commit.outputs.long }})

- name: Check outputs
if: ${{ github.event_name != 'pull_request' && steps.create-pr.outputs.pull-request-number }}
run: |
echo "Created PR at ${{ steps.create-pr.outputs.pull-request-url }}" >> $GITHUB_STEP_SUMMARY
Loading