-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pipeline Release Version 1.1.0 #64
Changes from 56 commits
f250381
2204d2e
616e157
ef61377
fc81a30
1c9f798
32c4798
8ab10ae
39306e4
7c28c3c
884c0db
cd3381c
3542830
f8a7ef6
c69d62d
cd84761
f1e48a0
7483cbe
74cd8fe
032ea60
d015b5e
982e234
6c05cae
294666e
9f2330a
9ee14eb
0419286
4619740
79d9f03
1657a11
06f0eb5
1e7c398
327a531
d64f0c7
f85d6b2
2fcd72e
de09bcd
bb9c18e
138e458
65bca09
47e4a88
ec04c9f
d7286d3
c5c362c
cc888aa
7393761
6375272
f2fce80
18246fe
cea7a6e
f9a0f03
af32e8c
4b58f64
d5f2995
6b80d7b
0630570
a7ee658
70a5674
65be064
b037482
3e44e07
57f92a5
b04c482
f9987f8
dfda421
7373cbe
04b9d30
d8cbf50
c41ff3b
257de0b
7600019
6a950be
c86c82d
111c6a7
ea544ab
f8805c3
d7af74c
cfb463b
1a3f5b1
c3f6f11
5b17a74
7acfa77
4deb7d4
1f94fb6
e2bcc60
20e8d76
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: release-announcements | ||
# Automatic release toot and tweet anouncements | ||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
toot: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: rzr/fediverse-action@master | ||
with: | ||
access-token: ${{ secrets.MASTODON_ACCESS_TOKEN }} | ||
host: "mstdn.science" # custom host if not "mastodon.social" (default) | ||
# GitHub event payload | ||
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#release | ||
message: | | ||
Pipeline release! ${{ github.repository }} v${{ github.event.release.tag_name }} - ${{ github.event.release.name }}! | ||
|
||
Please see the changelog: ${{ github.event.release.html_url }} | ||
|
||
send-tweet: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
- name: Install dependencies | ||
run: pip install tweepy==4.14.0 | ||
- name: Send tweet | ||
shell: python | ||
run: | | ||
import os | ||
import tweepy | ||
|
||
client = tweepy.Client( | ||
access_token=os.getenv("TWITTER_ACCESS_TOKEN"), | ||
access_token_secret=os.getenv("TWITTER_ACCESS_TOKEN_SECRET"), | ||
consumer_key=os.getenv("TWITTER_CONSUMER_KEY"), | ||
consumer_secret=os.getenv("TWITTER_CONSUMER_SECRET"), | ||
) | ||
tweet = os.getenv("TWEET") | ||
client.create_tweet(text=tweet) | ||
env: | ||
TWEET: | | ||
Pipeline release! ${{ github.repository }} v${{ github.event.release.tag_name }} - ${{ github.event.release.name }}! | ||
|
||
Please see the changelog: ${{ github.event.release.html_url }} | ||
TWITTER_CONSUMER_KEY: ${{ secrets.TWITTER_CONSUMER_KEY }} | ||
TWITTER_CONSUMER_SECRET: ${{ secrets.TWITTER_CONSUMER_SECRET }} | ||
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }} | ||
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} | ||
|
||
bsky-post: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: zentered/bluesky-post-action@v0.0.2 | ||
with: | ||
post: | | ||
Pipeline release! ${{ github.repository }} v${{ github.event.release.tag_name }} - ${{ github.event.release.name }}! | ||
|
||
Please see the changelog: ${{ github.event.release.html_url }} | ||
env: | ||
BSKY_IDENTIFIER: ${{ secrets.BSKY_IDENTIFIER }} | ||
BSKY_PASSWORD: ${{ secrets.BSKY_PASSWORD }} | ||
# |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ testing/ | |
testing* | ||
*.pyc | ||
null | ||
.vscode |
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -3,6 +3,27 @@ | |||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) | ||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||||
|
||||
## v1.0.5 - [2024-01-09] | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As I note further down, I think this is v1.1.0. |
||||
|
||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can I suggest that you explain in general what you have done here, these are very brief notes. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for noting that! Yeah, I agree. I now made the description more extensive and changed the pipeline version to v1.1 . |
||||
### `Added` | ||||
|
||||
- AmpliconSuite-Pipeline process | ||||
- AmpliconSuite output description | ||||
|
||||
### `Fixed` | ||||
|
||||
- nf-core template update to 2.11.1 | ||||
|
||||
### `Dependencies` | ||||
|
||||
- Added docker container dependency | ||||
|
||||
### `Deprecated` | ||||
|
||||
- AmpliconArchitect and AmpliconClassifier - Both used in AmpliconSuite | ||||
|
||||
======= | ||||
|
||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This looks like some leftover from merge conflicts resolution There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed |
||||
## v1.0.4 - [2023-06-26] | ||||
|
||||
### `Added` | ||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this is done you can remove the comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed. Good spot