Skip to content

Commit 194b2fe

Browse files
docs: bump version to v2.0.1
1 parent b0f7d64 commit 194b2fe

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![license](https://img.shields.io/github/license/leonsteinhaeuser/project-beta-automations)](https://img.shields.io/github/license/leonsteinhaeuser/project-beta-automations)
1010

1111
This automation provides the ability to automate issues and pull requests related to [Github Projects (Beta)](https://docs.github.com/en/issues/trying-out-the-new-projects-experience/about-projects).
12-
If the issue or pull request is not attached to a project, it is automatically added to the project and its desired column.
12+
If the issue or pull request is not attached to a project, it is automatically added to the project and its desired column.
1313
In addition to status automation, this automation also supports custom field management.
1414

1515
Note: GITHUB_TOKEN does not have the necessary scopes to access projects (beta).
@@ -19,7 +19,7 @@ For more information, see [Creating a personal access token](https://docs.github
1919
> :warning: The GitHub API change of 2022-02-23 results in an error message requiring an upgrade to a new version.
2020
>
2121
> What is the problem?
22-
>
22+
>
2323
> As of 2022-02-23 , the GitHub API requires that the value of a single select/iteration field be a string instead of an ID!
2424
>
2525
> This causes the automation to throw an error message.
@@ -98,7 +98,7 @@ jobs:
9898
if: github.event_name == 'issues' && (github.event.action == 'opened' || github.event.action == 'reopened')
9999
steps:
100100
- name: Move issue to ${{ env.todo }}
101-
uses: leonsteinhaeuser/[email protected].0
101+
uses: leonsteinhaeuser/[email protected].1
102102
with:
103103
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
104104
user: sample-user
@@ -112,7 +112,7 @@ jobs:
112112
if: github.event_name == 'issues' && github.event.action == 'closed'
113113
steps:
114114
- name: Moved issue to ${{ env.done }}
115-
uses: leonsteinhaeuser/[email protected].0
115+
uses: leonsteinhaeuser/[email protected].1
116116
with:
117117
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
118118
user: sample-user
@@ -126,7 +126,7 @@ jobs:
126126
if: github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'review_requested')
127127
steps:
128128
- name: Move PR to ${{ env.in_progress }}
129-
uses: leonsteinhaeuser/[email protected].0
129+
uses: leonsteinhaeuser/[email protected].1
130130
with:
131131
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
132132
user: sample-user
@@ -140,7 +140,7 @@ jobs:
140140
if: github.event_name == 'pull_request' && github.event.action == 'closed'
141141
steps:
142142
- name: Move PR to ${{ env.done }}
143-
uses: leonsteinhaeuser/[email protected].0
143+
uses: leonsteinhaeuser/[email protected].1
144144
with:
145145
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
146146
user: sample-user
@@ -245,7 +245,7 @@ jobs:
245245
if: github.event_name == 'issues' && (github.event.action == 'opened' || github.event.action == 'reopened')
246246
steps:
247247
- name: 'Move issue to ${{ env.status_todo }}'
248-
uses: leonsteinhaeuser/[email protected].0
248+
uses: leonsteinhaeuser/[email protected].1
249249
env:
250250
DEBUG_LOG: "true"
251251
with:
@@ -263,7 +263,7 @@ jobs:
263263
- issue_opened_or_reopened
264264
steps:
265265
- name: 'Modify custom fields'
266-
uses: leonsteinhaeuser/[email protected].0
266+
uses: leonsteinhaeuser/[email protected].1
267267
env:
268268
DEBUG_LOG: "true"
269269
with:
@@ -280,7 +280,7 @@ jobs:
280280
if: github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'reopened')
281281
steps:
282282
- name: 'Move PR to ${{ env.status_in_progress }}'
283-
uses: leonsteinhaeuser/[email protected].0
283+
uses: leonsteinhaeuser/[email protected].1
284284
env:
285285
DEBUG_LOG: "true"
286286
with:
@@ -298,7 +298,7 @@ jobs:
298298
- pr_opened_or_reopened
299299
steps:
300300
- name: 'Modify custom fields'
301-
uses: leonsteinhaeuser/[email protected].0
301+
uses: leonsteinhaeuser/[email protected].1
302302
env:
303303
DEBUG_LOG: "true"
304304
with:
@@ -358,7 +358,7 @@ jobs:
358358
if: github.event_name == 'issues' && github.event.action == 'opened'
359359
steps:
360360
- name: Move issue to ${{ env.todo }}
361-
uses: leonsteinhaeuser/[email protected].0
361+
uses: leonsteinhaeuser/[email protected].1
362362
env:
363363
DEBUG_COMMANDS: true
364364
DEBUG_LOG: true

0 commit comments

Comments
 (0)