Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/proposal-shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
steps:
- name: Apply proposal
id: apply
uses: rubykatzen/starcast/actions/proposal@v0.9
uses: rubykatzen/starcast/actions/proposal@v0.5
with:
mode: apply
repository: ${{ github.repository }}
Expand All @@ -101,7 +101,7 @@ jobs:
github_token: ${{ secrets.token }}
- name: Report to Telegram
if: always()
uses: rubykatzen/starcast/actions/telegram-notify@v0.6
uses: rubykatzen/starcast/actions/telegram-notify@v0.5
with:
chat_id: ${{ inputs.telegram_chat_id }}
bot_token: ${{ secrets.telegram_bot_token }}
Expand All @@ -121,15 +121,15 @@ jobs:
steps:
- name: Reject proposal
id: reject
uses: rubykatzen/starcast/actions/proposal@v0.9
uses: rubykatzen/starcast/actions/proposal@v0.5
with:
mode: reject
repository: ${{ github.repository }}
issue_number: ${{ inputs.issue_number }}
github_token: ${{ secrets.token }}
- name: Report to Telegram
if: always()
uses: rubykatzen/starcast/actions/telegram-notify@v0.6
uses: rubykatzen/starcast/actions/telegram-notify@v0.5
with:
chat_id: ${{ inputs.telegram_chat_id }}
bot_token: ${{ secrets.telegram_bot_token }}
Expand All @@ -154,7 +154,7 @@ jobs:
run: 'echo "::notice::distill is not implemented yet (see #11, #13)"'
- name: Report to Telegram
if: always()
uses: rubykatzen/starcast/actions/telegram-notify@v0.6
uses: rubykatzen/starcast/actions/telegram-notify@v0.5
with:
chat_id: ${{ inputs.telegram_chat_id }}
bot_token: ${{ secrets.telegram_bot_token }}
Expand All @@ -178,7 +178,7 @@ jobs:
run: 'echo "::notice::rework is not implemented yet (see #11)"'
- name: Report to Telegram
if: always()
uses: rubykatzen/starcast/actions/telegram-notify@v0.6
uses: rubykatzen/starcast/actions/telegram-notify@v0.5
with:
chat_id: ${{ inputs.telegram_chat_id }}
bot_token: ${{ secrets.telegram_bot_token }}
Expand All @@ -197,7 +197,7 @@ jobs:
steps:
- name: Dequeue next proposal candidate
id: dequeue
uses: rubykatzen/starcast/actions/proposal@v0.9
uses: rubykatzen/starcast/actions/proposal@v0.5
with:
mode: dequeue
capacity_query: ${{ inputs.capacity_query }}
Expand All @@ -208,7 +208,7 @@ jobs:
- name: Create proposal
id: propose
if: steps.dequeue.outputs.result == 'dequeued'
uses: rubykatzen/starcast/actions/proposal@v0.9
uses: rubykatzen/starcast/actions/proposal@v0.5
with:
mode: propose
parent_issue_id: ${{ steps.dequeue.outputs.issue_id }}
Expand All @@ -217,7 +217,7 @@ jobs:
github_token: ${{ secrets.token }}
- name: Report to Telegram
if: always()
uses: rubykatzen/starcast/actions/telegram-notify@v0.6
uses: rubykatzen/starcast/actions/telegram-notify@v0.5
with:
chat_id: ${{ inputs.telegram_chat_id }}
bot_token: ${{ secrets.telegram_bot_token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/route-issue-shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
route:
runs-on: ubuntu-latest
steps:
- uses: rubykatzen/starcast/actions/route-issue@v0.2
- uses: rubykatzen/starcast/actions/route-issue@v0.5
with:
routes: ${{ inputs.routes }}
label_name: ${{ inputs.label_name }}
Expand Down