Skip to content

Commit 88940e5

Browse files
committed
tweetrel
1 parent 4479d58 commit 88940e5

File tree

4 files changed

+35
-1
lines changed

4 files changed

+35
-1
lines changed

.github/scripts/build-tweet.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import tweetrel
2+
tweetrel.send_tweet()

.github/workflows/tweet.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: tweet
2+
on:
3+
workflow_dispatch:
4+
release:
5+
types: [published]
6+
defaults:
7+
run: { shell: bash }
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v1
14+
- uses: actions/setup-python@v2
15+
with: {python-version: '3.8'}
16+
- name: Run script
17+
env:
18+
CONTEXT_GITHUB: ${{ toJson(github) }}
19+
CONTEXT_SECRETS: ${{ toJson(secrets) }}
20+
run: |
21+
pip install -Uq tweetrel
22+
python .github/scripts/build-tweet.py

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.github
1+
*test.*
22
conda/
33
.sass-cache/
44
api.json

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
<!-- do not remove -->
44

5+
## 0.1.6
6+
7+
### New Features
8+
9+
- add `paged` ([#13](https://github.com/fastai/ghapi/issues/13))
10+
11+
- add `gh_date` ([#12](https://github.com/fastai/ghapi/issues/12))
12+
13+
14+
515
## 0.1.1
616

717
### New Features

0 commit comments

Comments
 (0)