Skip to content
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

Update readme to point to valid release tag #26

Merged
merged 1 commit into from
Jan 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
if: github.event_name == 'issues' && (github.event.action == 'opened' || github.event.action == 'reopened')
steps:
- name: Move issue to ${{ env.todo }}
uses: leonsteinhaeuser/project-beta-automations@v1.1.0-alpha.1
uses: leonsteinhaeuser/project-beta-automations@v1.1.0
with:
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
user: sample-user
Expand All @@ -85,7 +85,7 @@ jobs:
if: github.event_name == 'issues' && github.event.action == 'closed'
steps:
- name: Moved issue to ${{ env.done }}
uses: leonsteinhaeuser/project-beta-automations@v1.1.0-alpha.1
uses: leonsteinhaeuser/project-beta-automations@v1.1.0
with:
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
user: sample-user
Expand All @@ -99,7 +99,7 @@ jobs:
if: github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'review_requested')
steps:
- name: Move PR to ${{ env.in_progress }}
uses: leonsteinhaeuser/project-beta-automations@v1.1.0-alpha.1
uses: leonsteinhaeuser/project-beta-automations@v1.1.0
with:
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
user: sample-user
Expand All @@ -113,7 +113,7 @@ jobs:
if: github.event_name == 'pull_request' && github.event.action == 'closed'
steps:
- name: Move PR to ${{ env.done }}
uses: leonsteinhaeuser/project-beta-automations@v1.1.0-alpha.1
uses: leonsteinhaeuser/project-beta-automations@v1.1.0
with:
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
user: sample-user
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
if: github.event_name == 'issues' && (github.event.action == 'opened' || github.event.action == 'reopened')
steps:
- name: 'Move issue to ${{ env.status_todo }}'
uses: leonsteinhaeuser/project-beta-automations@v1.1.0-alpha.2
uses: leonsteinhaeuser/project-beta-automations@v1.1.0
env:
DEBUG_LOG: "true"
with:
Expand All @@ -214,7 +214,7 @@ jobs:
- issue_opened_or_reopened
steps:
- name: 'Modify custom fields'
uses: leonsteinhaeuser/project-beta-automations@v1.1.0-alpha.2
uses: leonsteinhaeuser/project-beta-automations@v1.1.0
env:
DEBUG_LOG: "true"
with:
Expand All @@ -231,7 +231,7 @@ jobs:
if: github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'reopened')
steps:
- name: 'Move PR to ${{ env.status_in_progress }}'
uses: leonsteinhaeuser/project-beta-automations@v1.1.0-alpha.2
uses: leonsteinhaeuser/project-beta-automations@v1.1.0
env:
DEBUG_LOG: "true"
with:
Expand All @@ -249,7 +249,7 @@ jobs:
- pr_opened_or_reopened
steps:
- name: 'Modify custom fields'
uses: leonsteinhaeuser/project-beta-automations@v1.1.0-alpha.2
uses: leonsteinhaeuser/project-beta-automations@v1.1.0
env:
DEBUG_LOG: "true"
with:
Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:
if: github.event_name == 'issues' && github.event.action == 'opened'
steps:
- name: Move issue to ${{ env.todo }}
uses: leonsteinhaeuser/project-beta-automations@v1.1.0-alpha.1
uses: leonsteinhaeuser/project-beta-automations@v1.1.0
env:
DEBUG_COMMANDS: true
DEBUG_LOG: true
Expand Down