Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Delete .github/workflows/generate-readme-tree.yaml

authored by

trueberryless and committed by
GitHub
a4d614ed e3dea689

-36
-36
.github/workflows/generate-readme-tree.yaml
··· 1 - name: Add tree changes 2 - 3 - on: 4 - push: 5 - branches: [main] 6 - 7 - jobs: 8 - commit-tree-changes: 9 - runs-on: ubuntu-latest 10 - steps: 11 - - name: Generate GitHub App token 12 - id: generate_token 13 - uses: tibdex/github-app-token@v2.1.0 14 - with: 15 - app_id: ${{ secrets.BOT_APP_ID }} 16 - private_key: ${{ secrets.BOT_PRIVATE_KEY }} 17 - - uses: actions/checkout@v3 18 - - name: Write tree outputs to README.md 19 - uses: trueberryless-org/readme-tree-writer-all@v1 20 - with: 21 - config_path: .github/readmetreerc.yaml 22 - - name: Create Pull Request 23 - uses: peter-evans/create-pull-request@v7 24 - with: 25 - token: ${{ steps.generate_token.outputs.token }} 26 - commit-message: "[ci] update tree" 27 - committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 28 - author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com> 29 - signoff: false 30 - branch: ci-tree 31 - delete-branch: true 32 - title: "[ci] update tree" 33 - body: "This PR was automatically created to update the project structure tree in every `README.md`." 34 - labels: 🤖 bot 35 - assignees: trueberryless 36 - draft: false