Skip to content

Commit

Permalink
ci: create prp workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
brenoepics authored May 16, 2024
1 parent 8671eef commit 59db3e4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/prp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run PRP

on:
workflow_dispatch:
push:
branches:
- main

permissions:
contents: write

jobs:
test-action:
runs-on: ubuntu-latest
name: Test action
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Process files
uses: ./ # Uses an action in the root directory
id: process
with:
rootDir: '.'
ignoredDirs: 'example/**'
env:
prpTitle: 'prp-preprocessor'
currentVersion: '1'
alertMessage: |
> [!IMPORTANT]
> This file was generated from a .prp

0 comments on commit 59db3e4

Please sign in to comment.