Skip to content

Commit

Permalink
add workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasCARPi committed Aug 27, 2024
1 parent b379324 commit b225ae8
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Codespell

on:
push:
branches: [master,next]
pull_request:
branches: [master,next]

jobs:
codespell:
name: Check for typos
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run codespell
uses: codespell-project/actions-codespell@v2
12 changes: 12 additions & 0 deletions .github/workflows/trigger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Trigger doc rebuild

on:
push:

jobs:
buildandpush:
runs-on: ubuntu-latest
steps:
- name: Send request to webhook to trigger update of doc
run: |
curl -v -H 'X-Hook-Secret: ${{ secrets.HOOK_SECRET }}' ${{ secrets.HOOK_URL }}

0 comments on commit b225ae8

Please sign in to comment.