add some test code #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Doc-Pilot | |
on: [push, pull_request, workflow_dispatch, workflow_call] | |
permissions: | |
contents: write | |
jobs: | |
add-docstring: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ ${{ github.event.repository.name }} | |
uses: actions/checkout@v4 | |
with: | |
path: DoCPilot | |
persist-credentials: false | |
submodules: "recursive" | |
set-safe-directory: false | |
- name: Get changed files | |
id: changed-files | |
uses: lots0logs/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN}} | |
- name: Run Claude Script | |
run: | | |
echo {{fromJSON(steps.changed-files.outputs.all)}} | |
echo "claude magic" | |
- name: Cleanup Process | |
run: | | |
echo "We have now run cleanup" | |