diff --git a/.github/workflows/notify-irc.yaml b/.github/workflows/notify-irc.yaml deleted file mode 100644 index 75f6eb235e..0000000000 --- a/.github/workflows/notify-irc.yaml +++ /dev/null @@ -1,44 +0,0 @@ -name: "Push Notification" -on: - push: - branches: [master] - pull_request: - types: [opened, closed] - issues: - types: [opened, closed] - -jobs: - ircnotify: - runs-on: ubuntu-latest - timeout-minutes: 3 - steps: - - name: irc push - uses: Gottox/irc-message-action@master - if: github.event_name == 'push' && github.repository == 'void-linux/void-packages' - with: - notice: true - channel: "#xbps" - nickname: void-packages - sasl_password: ${{ secrets.freenode_password_void_packages }} - tls: true - message: "${{ github.actor }} pushed ${{ github.event.compare }}" - - name: irc pull request - uses: Gottox/irc-message-action@master - if: github.event_name == 'pull_request' && github.repository == 'void-linux/void-packages' - with: - notice: true - channel: "#xbps" - nickname: void-packages - sasl_password: ${{ secrets.freenode_password_void_packages }} - tls: true - message: "${{ github.actor }} ${{ github.event.action }} pull request “${{ github.event.pull_request.title }}” ${{ github.event.pull_request.html_url }}" - - name: irc issue - uses: Gottox/irc-message-action@master - if: github.event_name == 'issues' && github.repository == 'void-linux/void-packages' - with: - notice: true - channel: "#xbps" - nickname: void-packages - sasl_password: ${{ secrets.freenode_password_void_packages }} - tls: true - message: "${{ github.actor }} ${{ github.event.action }} issue “${{ github.event.issue.title }}” ${{ github.event.issue.html_url }}" diff --git a/.github/workflows/notify-issue.yaml b/.github/workflows/notify-issue.yaml new file mode 100644 index 0000000000..b7f999d47b --- /dev/null +++ b/.github/workflows/notify-issue.yaml @@ -0,0 +1,24 @@ +name: "Issue Notification" +on: + issues: + types: [opened, closed] + +jobs: + ircnotify: + runs-on: ubuntu-latest + timeout-minutes: 3 + steps: + - name: "Issue Notification" + uses: Gottox/irc-message-action@master + if: github.repository == 'void-linux/void-packages' + with: + notice: true + channel: "#xbps" + nickname: void-packages + sasl_password: ${{ secrets.freenode_password_void_packages }} + tls: true + message: >- + ${{ github.actor }} + ${{ github.event.action }} issue + “${{ github.event.issue.title }}” + ${{ github.event.issue.html_url }} diff --git a/.github/workflows/notify-pr.yaml b/.github/workflows/notify-pr.yaml new file mode 100644 index 0000000000..acbccc85f7 --- /dev/null +++ b/.github/workflows/notify-pr.yaml @@ -0,0 +1,24 @@ +name: "Pull Request Notification" +on: + pull_request: + types: [opened, closed] + +jobs: + ircnotify: + runs-on: ubuntu-latest + timeout-minutes: 3 + steps: + - name: "Pull Request Notification" + uses: Gottox/irc-message-action@master + if: github.repository == 'void-linux/void-packages' + with: + notice: true + channel: "#xbps" + nickname: void-packages + sasl_password: ${{ secrets.freenode_password_void_packages }} + tls: true + message: >- + ${{ github.actor }} + ${{ github.event.action }} pull request + “${{ github.event.pull_request.title }}” + ${{ github.event.pull_request.html_url }} diff --git a/.github/workflows/notify-push.yaml b/.github/workflows/notify-push.yaml new file mode 100644 index 0000000000..9be0d2a87d --- /dev/null +++ b/.github/workflows/notify-push.yaml @@ -0,0 +1,23 @@ +name: "Push Notification" +on: + push: + branches: [master] + +jobs: + ircnotify: + runs-on: ubuntu-latest + timeout-minutes: 3 + steps: + - name: "Push Notification" + uses: Gottox/irc-message-action@master + if: github.repository == 'void-linux/void-packages' + with: + notice: true + channel: "#xbps" + nickname: void-packages + sasl_password: ${{ secrets.freenode_password_void_packages }} + tls: true + message: >- + ${{ github.actor }} + pushed + ${{ github.event.compare }}"