aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMichael Aldridge <aldridge.mac@gmail.com>2020-12-21 06:11:54 +0000
committerMichael Aldridge <aldridge.mac@gmail.com>2020-12-21 06:11:54 +0000
commit9b61bf5df5b4c03020480deb3f3c3bebefe933c8 (patch)
treeb6bee02a83db31e1eea9543a0b72d8b99781c28a /.github/workflows
parentf7f83416453f008b6fbfc3811d6fa8ca8338b6b5 (diff)
downloadvoid-packages-9b61bf5df5b4c03020480deb3f3c3bebefe933c8.tar
void-packages-9b61bf5df5b4c03020480deb3f3c3bebefe933c8.tar.gz
void-packages-9b61bf5df5b4c03020480deb3f3c3bebefe933c8.tar.bz2
void-packages-9b61bf5df5b4c03020480deb3f3c3bebefe933c8.tar.lz
void-packages-9b61bf5df5b4c03020480deb3f3c3bebefe933c8.tar.xz
void-packages-9b61bf5df5b4c03020480deb3f3c3bebefe933c8.tar.zst
void-packages-9b61bf5df5b4c03020480deb3f3c3bebefe933c8.zip
.github/workflows: Remove old notifications
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/notify-issue.yaml31
-rw-r--r--.github/workflows/notify-pr.yaml31
-rw-r--r--.github/workflows/notify-push.yaml29
3 files changed, 0 insertions, 91 deletions
diff --git a/.github/workflows/notify-issue.yaml b/.github/workflows/notify-issue.yaml
deleted file mode 100644
index 136116c9024..00000000000
--- a/.github/workflows/notify-issue.yaml
+++ /dev/null
@@ -1,31 +0,0 @@
-name: "Issue Notification"
-on:
- issues:
- types: [opened, closed]
-
-jobs:
- ircnotify:
- runs-on: ubuntu-latest
- timeout-minutes: 3
- steps:
- - name: Shorten URL
- id: shortener
- if: github.repository == 'void-linux/void-packages'
- uses: Gottox/url-shortener-action@master
- with:
- url: "${{ github.event.issue.html_url }}"
- - name: "Issue Notification"
- uses: Gottox/irc-message-action@main
- continue-on-error: true
- if: github.repository == 'void-linux/void-packages'
- with:
- channel: "#xbps"
- nickname: void-packages
- sasl_password: ${{ secrets.freenode_password_void_packages }}
- tls: true
- message: >-
- ${{ github.actor }}
- ${{ github.event.action }} issue
- #${{ github.event.issue.number }}
- “${{ github.event.issue.title }}”
- ${{ steps.shortener.outputs.short_url }}
diff --git a/.github/workflows/notify-pr.yaml b/.github/workflows/notify-pr.yaml
deleted file mode 100644
index 6a362b23e3c..00000000000
--- a/.github/workflows/notify-pr.yaml
+++ /dev/null
@@ -1,31 +0,0 @@
-name: "Pull Request Notification"
-on:
- pull_request:
- types: [opened, closed]
-
-jobs:
- ircnotify:
- runs-on: ubuntu-latest
- timeout-minutes: 3
- steps:
- - name: Shorten URL
- id: shortener
- if: github.repository == 'void-linux/void-packages'
- uses: Gottox/url-shortener-action@master
- with:
- url: "${{ github.event.pull_request.html_url }}"
- - name: "Pull Request Notification"
- uses: Gottox/irc-message-action@main
- continue-on-error: true
- if: github.repository == 'void-linux/void-packages'
- with:
- 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.number }}
- “${{ github.event.pull_request.title }}”
- ${{ steps.shortener.outputs.short_url }}
diff --git a/.github/workflows/notify-push.yaml b/.github/workflows/notify-push.yaml
deleted file mode 100644
index d465b27dc1f..00000000000
--- a/.github/workflows/notify-push.yaml
+++ /dev/null
@@ -1,29 +0,0 @@
-name: "Push Notification"
-on:
- push:
- branches: [master]
-
-jobs:
- ircnotify:
- runs-on: ubuntu-latest
- timeout-minutes: 3
- steps:
- - name: Shorten URL
- id: shortener
- if: github.repository == 'void-linux/void-packages'
- uses: Gottox/url-shortener-action@master
- with:
- url: "${{ github.event.compare }}"
- - name: "Push Notification"
- uses: Gottox/irc-message-action@main
- continue-on-error: true
- if: github.repository == 'void-linux/void-packages'
- with:
- channel: "#xbps"
- nickname: void-packages
- sasl_password: ${{ secrets.freenode_password_void_packages }}
- tls: true
- message: >-
- ${{ github.actor }}
- pushed
- ${{ steps.shortener.outputs.short_url }}