From 12308fbe3c5525e263a2526aeaa73245172961fc Mon Sep 17 00:00:00 2001 From: Sean Date: Tue, 23 Nov 2021 10:31:32 +0100 Subject: [PATCH] Remove GHActions to announce file changes Removes the GHActions that would create issues when files change. The files in question were moved to the backend-repo --- .../updates-to-initial-data.md | 20 ------------- .../updates-to-models.md | 29 ------------------- .../updates-to-permissions.md | 29 ------------------- .../announce-initial-data-updates.yml | 24 --------------- .github/workflows/announce-model-updates.yml | 24 --------------- .../workflows/announce-permission-updates.yml | 24 --------------- 6 files changed, 150 deletions(-) delete mode 100644 .github/announcement_templates/updates-to-initial-data.md delete mode 100644 .github/announcement_templates/updates-to-models.md delete mode 100644 .github/announcement_templates/updates-to-permissions.md delete mode 100644 .github/workflows/announce-initial-data-updates.yml delete mode 100644 .github/workflows/announce-model-updates.yml delete mode 100644 .github/workflows/announce-permission-updates.yml diff --git a/.github/announcement_templates/updates-to-initial-data.md b/.github/announcement_templates/updates-to-initial-data.md deleted file mode 100644 index 169b194df..000000000 --- a/.github/announcement_templates/updates-to-initial-data.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: The initial-data.json got updated -assignees: tsiegleauq, ostcar, normanjaeckel, jsangmeister -labels: documentation, OpenSlides4, meta ---- - -# Changes to `initial-data.json` have just been added to OpenSlides - -Please acknowledge the recent changes to `initial-data.json` and update your projects accordingly. - -### Current `initial-data.json` -[docker/initial-data.json]({{ env.GITHUB_SERVER_URL }}/{{ env.GITHUB_REPOSITORY }}/blob/master/docker/initial-data.json) - -### Corresponding Commit: -[{{ env.GITHUB_SHA }}]({{ env.GITHUB_SERVER_URL }}/{{ env.GITHUB_REPOSITORY }}/commit/{{ env.GITHUB_SHA }}) - -## Affected Projects - -### Manage -https://github.com/OpenSlides/openslides-manage-service diff --git a/.github/announcement_templates/updates-to-models.md b/.github/announcement_templates/updates-to-models.md deleted file mode 100644 index e5aabf7be..000000000 --- a/.github/announcement_templates/updates-to-models.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: The models.yml got updated -assignees: tsiegleauq, ostcar, normanjaeckel, jsangmeister, r-peschke, GabrielInTheWorld -labels: documentation, OpenSlides4, meta ---- - -# Changes to `models.yml` have just been added to OpenSlides - -Please acknowledge the recent changes to `models.yml` and update your projects accordingly. - -### Current `models.yml` -[docs/models.yml]({{ env.GITHUB_SERVER_URL }}/{{ env.GITHUB_REPOSITORY }}/blob/master/docs/models.yml) - -### Corresponding Commit: -[{{ env.GITHUB_SHA }}]({{ env.GITHUB_SERVER_URL }}/{{ env.GITHUB_REPOSITORY }}/commit/{{ env.GITHUB_SHA }}) - -## Affected Projects - -### Backend -https://github.com/OpenSlides/openslides-backend - -### Client -https://github.com/OpenSlides/openslides-client - -### Autoupdate -https://github.com/OpenSlides/openslides-autoupdate-service - -### Manage -https://github.com/OpenSlides/openslides-manage-service \ No newline at end of file diff --git a/.github/announcement_templates/updates-to-permissions.md b/.github/announcement_templates/updates-to-permissions.md deleted file mode 100644 index 23b9ccc88..000000000 --- a/.github/announcement_templates/updates-to-permissions.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: The permission.yml got updated -assignees: tsiegleauq, ostcar, normanjaeckel, jsangmeister, r-peschke, GabrielInTheWorld -labels: documentation, OpenSlides4, meta ---- - -# Changes to `permission.yml` have just been added to OpenSlides - -Please acknowledge the recent changes to `permission.yml` and update your projects accordingly. - -### Current `permission.yml` -[docs/permission.yml]({{ env.GITHUB_SERVER_URL }}/{{ env.GITHUB_REPOSITORY }}/blob/master/docs/permission.yml) - -### Corresponding Commit: -[{{ env.GITHUB_SHA }}]({{ env.GITHUB_SERVER_URL }}/{{ env.GITHUB_REPOSITORY }}/commit/{{ env.GITHUB_SHA }}) - -## Affected Projects - -### Backend -https://github.com/OpenSlides/openslides-backend - -### Client -https://github.com/OpenSlides/openslides-client - -### Autoupdate -https://github.com/OpenSlides/openslides-autoupdate-service - -### Manage -https://github.com/OpenSlides/openslides-manage-service \ No newline at end of file diff --git a/.github/workflows/announce-initial-data-updates.yml b/.github/workflows/announce-initial-data-updates.yml deleted file mode 100644 index 58016703c..000000000 --- a/.github/workflows/announce-initial-data-updates.yml +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Announce initial-data.json updates -on: - push: - branches: - - master - paths: - - 'docker/initial-data.json' - -jobs: - announce-update: - name: 'Announce updates to initial-data.json' - if: ${{ github.event.pull_request.merged }} - runs-on: ubuntu-latest - steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Create Issue - uses: JasonEtco/create-an-issue@v2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - filename: .github/announcement_templates/updates-to-initial-data.md diff --git a/.github/workflows/announce-model-updates.yml b/.github/workflows/announce-model-updates.yml deleted file mode 100644 index c3d92fecb..000000000 --- a/.github/workflows/announce-model-updates.yml +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Announce model updates -on: - push: - branches: - - master - paths: - - 'docs/models.yml' - -jobs: - announce-update: - name: 'Announce updates to models.yml' - if: ${{ github.event.pull_request.merged }} - runs-on: ubuntu-latest - steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Create Issue - uses: JasonEtco/create-an-issue@v2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - filename: .github/announcement_templates/updates-to-models.md diff --git a/.github/workflows/announce-permission-updates.yml b/.github/workflows/announce-permission-updates.yml deleted file mode 100644 index b172889a8..000000000 --- a/.github/workflows/announce-permission-updates.yml +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Announce permission updates -on: - push: - branches: - - master - paths: - - 'docs/permission.yml' - -jobs: - announce-update: - name: 'Announce updates to permission.yml' - if: ${{ github.event.pull_request.merged }} - runs-on: ubuntu-latest - steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Create Issue - uses: JasonEtco/create-an-issue@v2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - filename: .github/announcement_templates/updates-to-permissions.md