Create dataset loader for XL-Sum #1
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
on: | ||
issues: | ||
types: | ||
- labeled | ||
jobs: | ||
add-comment-on-staled-issue: | ||
if: github.event.label.name == "staled-issue" | ||
Check failure on line 8 in .github/workflows/add-new-comment-on-stale.yml GitHub Actions / .github/workflows/add-new-comment-on-stale.ymlInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- name: Remind assignee on staled Issue | ||
uses: peter-evans/create-or-update-comment@v2 | ||
with: | ||
issue-number: ${{ github.event.issue.number }} | ||
body: "Hi @${{github.event.issue.assignee.login}}, may I know if you are still working on this issue? Please let @holylovenia @SamuelCahyawijaya @sabilmakbar know if you need any help." | ||
add-comment-on-staled-pr: | ||
if: github.event.label.name == "need-fu-pr" | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- name: Remind assignee and author on staled PR | ||
uses: peter-evans/create-or-update-comment@v2 | ||
with: | ||
issue-number: ${{github.event.pull_request.number}} | ||
body: "Hi @${{join(github.event.pull_request.assignees.*.login, ', @')}} & @${{github.event.pull_request.user.login}}, may I know if you are still working on this PR?" |