Skip to content

Commit dbc08eb

Browse files
prefect-collection-synchronizer[bot]ahuang11ahuang11
authored
Sync Collection with changes to prefect-collection-template (PrefectHQ#72)
* Updating collection with changes to prefect-collection-template * Fix cruft * Updating collection with changes to prefect-collection-template * Updating collection with changes to prefect-collection-template * Updating collection with changes to prefect-collection-template * Remove rej * Updating collection with changes to prefect-collection-template * Remove rejk Co-authored-by: ahuang11 <ahuang11@users.noreply.github.com> Co-authored-by: ahuang11 <andrew.h@prefect.io>
1 parent 38c9904 commit dbc08eb

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
lines changed

.cruft.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "https://github.com/PrefectHQ/prefect-collection-template",
3-
"commit": "f1db52cbcc7d45eaf7d1ffa494e5faf2627600a3",
3+
"commit": "dabff0c99e3eb545d926ec6026bf8843e84eeb6a",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {

.github/PULL_REQUEST_TEMPLATE.md

+19-23
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,28 @@
1-
<!--
2-
Thanks for opening a pull request to prefect-gcp 🎉!
1+
<!-- Thanks for contributing 🎉! Please ensure the title neatly summarizes the proposed changes. -->
32

4-
We've got a few requests to help us review contributions:
3+
<!-- Overview -->
54

6-
- Make sure that your title neatly summarizes the proposed changes.
7-
- Provide a short overview of the change and the value it adds.
8-
- Share an example to help us understand the change in user experience.
9-
- Run `pre-commit install && pre-commit run --all` for linting.
10-
11-
Happy engineering!
12-
-->
13-
14-
<!-- Include an overview here -->
15-
16-
<!-- Link to issue -->
17-
Closes #
5+
Closes
186

197
### Example
20-
<!--
21-
Share an example of the change in action.
22-
23-
A code blurb is best. Changes to features should include an example that is executable by a new user.
8+
<!-- A code blurb is best. Changes to features should include an example that is executable by a new user. -->
9+
10+
### Screenshots
11+
<!--
12+
Any relevant screenshots
13+
- The updated docs page from `mkdocs serve`.
14+
- Output from running the example.
15+
- Service integration test results.
2416
-->
2517

2618
### Checklist
2719
<!-- These boxes may be checked after opening the pull request. -->
2820

29-
- [ ] This pull request references any related issue by including "Closes #<ISSUE_NUMBER>"
30-
- If no issue exists and your change is not a small fix, please [create an issue](https://github.com/PrefectHQ/prefect-gcp/issues/new/choose) first.
31-
- [ ] This pull request includes tests or only affects documentation.
32-
- [ ] Summarized PR's changes in [CHANGELOG.md](https://github.com/PrefectHQ/prefect-gcp/blob/main/CHANGELOG.md)
21+
- [ ] References any related issue by including "Closes #<Issue Number>" or "Closes <Issue URL>".
22+
- If no issue exists and your change is not a small fix, please [create an issue](https://github.com/PrefectHQ/prefect-gcp/issues/new/choose) first.
23+
- [ ] Includes tests or only affects documentation.
24+
- [ ] Passes `pre-commit` checks.
25+
- Run `pre-commit install && pre-commit run --all` locally for formatting and linting.
26+
- [ ] Includes screenshots of documentation updates.
27+
- Run `mkdocs serve` view documentation locally.
28+
- [ ] Summarizes PR's changes in [CHANGELOG.md](https://github.com/PrefectHQ/prefect-gcp/blob/main/CHANGELOG.md)

MAINTAINERS.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Getting Started
44

5+
Now that you've bootstrapped a project, follow the steps below to get started developing your Prefect Collection!
6+
57
### Python setup
68

79
Requires an installation of Python 3.7+
@@ -10,10 +12,12 @@ We recommend using a Python virtual environment manager such as pipenv, conda or
1012

1113
### GitHub setup
1214

13-
Generate a Prefect collection project in the terminal:
15+
Create a Git respoitory for the newly generated collection and create the first commit:
1416

1517
```bash
16-
cookiecutter https://github.com/PrefectHQ/prefect-collection-template
18+
git init
19+
git add .
20+
git commit -m "Initial commit: project generated by prefect-collection-template"
1721
```
1822

1923
Then, create a new repo following the prompts at:

0 commit comments

Comments
 (0)