diff --git a/.github/workflows/publish_content.yml b/.github/workflows/publish_content.yml index 4c434df..86d19f8 100644 --- a/.github/workflows/publish_content.yml +++ b/.github/workflows/publish_content.yml @@ -47,6 +47,7 @@ jobs: MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }} BLUESKY_USERNAME: ${{ secrets.BLUESKY_USERNAME }} BLUESKY_PASSWORD: ${{ secrets.BLUESKY_PASSWORD }} + MASTODON_EU_FR_TOKEN: ${{ secrets.MASTODON_EU_FR_TOKEN }} MATRIX_ACCESS_TOKEN: ${{ secrets.MATRIX_ACCESS_TOKEN }} SLACK_ACCESS_TOKEN: ${{ secrets.SLACK_ACCESS_TOKEN }} SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID }} diff --git a/plugins.yml b/plugins.yml index 826bf4f..689073d 100644 --- a/plugins.yml +++ b/plugins.yml @@ -1,7 +1,7 @@ plugins: - name: mastodon class: mastodon.mastodon_client - enabled: true + enabled: false config: base_url: "https://mstdn.science" access_token: $MASTODON_ACCESS_TOKEN @@ -9,13 +9,21 @@ plugins: - name: bluesky class: bluesky.bluesky_client - enabled: true + enabled: false config: base_url: "https://bsky.social" username: $BLUESKY_USERNAME password: $BLUESKY_PASSWORD max_content_length: 300 + - name: mastodon-eu-freiburg + class: mastodon.mastodon_client + enabled: true + config: + base_url: "https://xn--baw-joa.social" + access_token: $MASTODON_EU_FR_TOKEN + max_content_length: 500 + - name: matrix-eu-announce class: matrix.matrix_client enabled: true @@ -26,7 +34,7 @@ plugins: - name: slack class: slack.slack_client - enabled: true + enabled: false config: access_token: $SLACK_ACCESS_TOKEN channel_id: $SLACK_CHANNEL_ID