[Alpha][Bug] 更新casaos后,旧应用程序导入重建不了,没有反应 #5847
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: Push Events to Discord | |
on: | |
issues: | |
types: | |
- opened | |
issue_comment: | |
types: | |
- created | |
discussion: | |
types: | |
- created | |
- transferred | |
- answered | |
discussion_comment: | |
types: | |
- created | |
jobs: | |
push-events: | |
runs-on: ubuntu-latest | |
steps: | |
- name: General Discussions & Comments | |
if: ${{ ( github.event_name == 'discussion' || github.event_name == 'discussion_comment' ) && github.event.discussion.category.name == 'General' }} | |
uses: joseph-montanez/[email protected] | |
with: | |
webhook: ${{ secrets.Discord_CasaOS_General_Webhook }} | |
- name: App Request Issues & Comments | |
if: ${{ ( github.event_name == 'issues' || github.event_name == 'issue_comment' ) && contains(github.event.issue.labels.*.name, 'App Request') }} | |
uses: joseph-montanez/[email protected] | |
with: | |
webhook: ${{ secrets.Discord_CasaOS_App_Request_Webhook }} | |
- name: Bug Issues & Comments | |
if: ${{ ( github.event_name == 'issues' || github.event_name == 'issue_comment' ) && contains(github.event.issue.labels.*.name, 'bug') && !contains(github.event.issue.labels.*.name, 'alpha') }} | |
uses: joseph-montanez/[email protected] | |
with: | |
webhook: ${{ secrets.Discord_CasaOS_Bug_Webhook }} |