CI / Recent Activity #19
Workflow file for this run
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: CI / Recent Activity | |
on: | |
workflow_dispatch: | |
jobs: | |
update_activity: | |
name: Test | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Add Activity to Readme | |
uses: ./ | |
with: | |
username: "offensive-vk" | |
token: ${{ secrets.BOT_TOKEN }} | |
committer: "Hamster [bot]" | |
committer-email: "[email protected]" | |
commit-msg: "Updated Recent Activity." | |
max-lines: 50 | |
target-file: 'README.md' | |
- name: Add Activity to File | |
uses: ./ | |
with: | |
username: "offensive-vk" | |
token: ${{ secrets.BOT_TOKEN }} | |
committer: "Hamster [bot]" | |
committer-email: "[email protected]" | |
commit-msg: "Updated Recent Activity." | |
max-lines: 200 | |
target-file: 'RECENT.md' |