5 topics that everyone gets the opportunity to vote on if they think it would be beneficial for more important updated information on the topic and see if there's 1 topic out of the others that significantly was voted on to make more relevant and useful information to be at our disposal. #17
This file contains hidden or 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: Delete empty issues | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
label_issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
if: github.event.issue.body == '' || contains(github.event.issue.body, 'Give a 1 sentence description of a problem with the current OSSU Curriculum. Successful critiques of the curriculum will point out ways that OSSU is failing to uphold') | |
steps: | |
- name: Create comment | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. | |
It looks like you've opened an empty issue or one without a unique problem description. | |
Please understand that this is a popular project, useful to many learners, and empty issues distract maintainers that are trying to help others. | |
If you would like practice with issues, you can follow github documentation to create your own repo: | |
https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-new-repository | |
And then in that repo practice creating and editing issues: | |
https://docs.github.com/en/issues/tracking-your-work-with-issues/configuring-issues/quickstart | |
We look forward to your future contributions to OSSU, when you are contributing to improve computer science education for learners all over the world! | |
- name: Close issue | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'close-issue' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} |