diff --git a/.github/ISSUE_TEMPLATE/guide.md b/.github/ISSUE_TEMPLATE/guide.md index ba5d897665..41b57c655d 100644 --- a/.github/ISSUE_TEMPLATE/guide.md +++ b/.github/ISSUE_TEMPLATE/guide.md @@ -8,20 +8,25 @@ labels: "type: docs" ## Content Creation Requirements + To maintain the quality of our content, please adhere to the following guidelines: ### 1. Accuracy in Language + - **Grammar and Spelling:** Ensure your content is free from grammatical and spelling errors. ### 2. Tone and Style + - **Neutral Tone:** Maintain a neutral, non-emotional tone throughout the content. - **Engaging Style:** Write in a free-flowing and engaging manner, keeping the reader's interest. ### 3. Content Integrity + - **Fact-Checking:** Verify all information. If unsure, use Discord to clarify. - **Relevance:** Ensure all content is cohesive, to the point, and directly related to the title. ### 4. Originality + - **Avoid Low-Effort Content:** Content should be original and not solely generated by AI tools like ChatGPT. **PS: Adherence to these guidelines is crucial. Content not meeting these standards may require revision or may not be accepted.** diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000000..7000d5c262 --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,23 @@ +name: Release Drafter + +on: + schedule: + - cron: "*/1 * * * *" + +jobs: + release_drafter: + name: Draft Release + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + steps: + - name: Checkout Current Branch (Fast) + uses: actions/checkout@v4 + + - id: create_release + uses: release-drafter/release-drafter@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + config-name: release-drafter.yml