Skip to content

Commit

Permalink
Merge pull request #295 from eslavich/eslavich-add-changelog-and-check
Browse files Browse the repository at this point in the history
Add changelog and actions workflows
  • Loading branch information
WilliamJamieson authored Feb 14, 2022
2 parents 8f1e957 + 9d7c00b commit 1710872
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Changelog

on:
pull_request:
types: [labeled, unlabeled, opened, synchronize, reopened]

jobs:
changelog:
name: Confirm changelog entry
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- name: Grep for PR number in CHANGES.rst
run: grep -P '\[[^\]]*#${{github.event.number}}[,\]]' CHANGES.rst
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-changelog-entry-needed') }}
16 changes: 16 additions & 0 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Publish to PyPI

on:
release:
types: [released]

jobs:
publish:
uses: spacetelescope/action-publish_to_pypi/.github/workflows/workflow.yml@master
with:
test: false
build_platform_wheels: false # Set to true if your package contains a C extension
secrets:
user: ${{ secrets.PYPI_USERNAME_ASDF_MAINTAINER }}
password: ${{ secrets.PYPI_PASSWORD_ASDF_MAINTAINER }} # WARNING: Do not hardcode secret values here! If you want to use a different user or password, you can override this secret by creating one with the same name in your Github repository settings.
test_password: ${{ secrets.PYPI_PASSWORD_ASDF_MAINTAINER_TEST }}
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
1.0.0 (unreleased)
-------------------

- Add installable Python package to replace use of this repo as a submodule. [#292]

0 comments on commit 1710872

Please sign in to comment.