Skip to content

Commit

Permalink
tweetrel
Browse files Browse the repository at this point in the history
  • Loading branch information
jph00 committed Dec 7, 2020
1 parent 4479d58 commit 88940e5
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/scripts/build-tweet.py
@@ -0,0 +1,2 @@
import tweetrel
tweetrel.send_tweet()
22 changes: 22 additions & 0 deletions .github/workflows/tweet.yml
@@ -0,0 +1,22 @@
name: tweet
on:
workflow_dispatch:
release:
types: [published]
defaults:
run: { shell: bash }

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v2
with: {python-version: '3.8'}
- name: Run script
env:
CONTEXT_GITHUB: ${{ toJson(github) }}
CONTEXT_SECRETS: ${{ toJson(secrets) }}
run: |
pip install -Uq tweetrel
python .github/scripts/build-tweet.py
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,4 +1,4 @@
.github
*test.*
conda/
.sass-cache/
api.json
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,16 @@

<!-- do not remove -->

## 0.1.6

### New Features

- add `paged` ([#13](https://github.com/fastai/ghapi/issues/13))

- add `gh_date` ([#12](https://github.com/fastai/ghapi/issues/12))



## 0.1.1

### New Features
Expand Down

0 comments on commit 88940e5

Please sign in to comment.