Skip to content

Commit

Permalink
docs: bump version to v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leonsteinhaeuser committed Feb 10, 2022
1 parent 65d74a8 commit 07cb88f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,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.1
uses: leonsteinhaeuser/project-beta-automations@v1.2.0
with:
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
user: sample-user
Expand All @@ -96,7 +96,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.1
uses: leonsteinhaeuser/project-beta-automations@v1.2.0
with:
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
user: sample-user
Expand All @@ -110,7 +110,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.1
uses: leonsteinhaeuser/project-beta-automations@v1.2.0
with:
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
user: sample-user
Expand All @@ -124,7 +124,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.1
uses: leonsteinhaeuser/project-beta-automations@v1.2.0
with:
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
user: sample-user
Expand Down Expand Up @@ -230,7 +230,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.1
uses: leonsteinhaeuser/project-beta-automations@v1.2.0
env:
DEBUG_LOG: "true"
with:
Expand All @@ -248,7 +248,7 @@ jobs:
- issue_opened_or_reopened
steps:
- name: 'Modify custom fields'
uses: leonsteinhaeuser/project-beta-automations@v1.1.1
uses: leonsteinhaeuser/project-beta-automations@v1.2.0
env:
DEBUG_LOG: "true"
with:
Expand All @@ -265,7 +265,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.1
uses: leonsteinhaeuser/project-beta-automations@v1.2.0
env:
DEBUG_LOG: "true"
with:
Expand All @@ -283,7 +283,7 @@ jobs:
- pr_opened_or_reopened
steps:
- name: 'Modify custom fields'
uses: leonsteinhaeuser/project-beta-automations@v1.1.1
uses: leonsteinhaeuser/project-beta-automations@v1.2.0
env:
DEBUG_LOG: "true"
with:
Expand Down Expand Up @@ -324,7 +324,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.1
uses: leonsteinhaeuser/project-beta-automations@v1.2.0
env:
DEBUG_COMMANDS: true
DEBUG_LOG: true
Expand Down

0 comments on commit 07cb88f

Please sign in to comment.