Registration for Jana Ebler #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Registration from Issue | |
on: | |
issues: | |
types: [opened] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Authenticate Git | |
run: | | |
echo "machine github.com login codefreeze-registrations password ${GITHUB_TOKEN}" > ~/.netrc | |
git status | |
git config user.email "[email protected]" | |
git config user.name "GitHub Actions" | |
- uses: codefreezefi/registration-action@saga |