-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from BayAreaMetro/acceptance-criteria-integra…
…tion Transit Improvements and Acceptance Criteria Summaries
- Loading branch information
Showing
61 changed files
with
1,396,531 additions
and
1,013 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: 🧹 Chore | ||
about: Something that isn't a feature or a bug | ||
title: "🧹 Chore: " | ||
labels: chore | ||
assignees: '' | ||
--- | ||
|
||
<!--Short Description--> | ||
|
||
Progress: | ||
|
||
- [ ] Sufficiently defined | ||
- [ ] Approach decided | ||
- [ ] Implemented | ||
|
||
## Considerations | ||
<!--Short Description--> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,43 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: "[FEATURE]" | ||
name: 🚀 Feature request | ||
about: Suggest an enhancement | ||
title: "🚀 Feature:" | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
### User Story | ||
|
||
*As a ...insert type of user... I'd like to ...insert desired feature or behavior...* | ||
|
||
### Priority | ||
Progress: | ||
|
||
- [ ] Sufficiently defined | ||
- [ ] Approach determined | ||
- [ ] Tests developed | ||
- [ ] User story satisfied | ||
- [ ] Doc strings | ||
- [ ] General documentation | ||
- [ ] Passing tests | ||
|
||
### Priority | ||
|
||
### Level of Effort | ||
|
||
### Resolution Ideas | ||
|
||
### Project | ||
|
||
*Is there a funder or project associated with this feature?* | ||
<!--Is there a funder or project associated with this feature?--> | ||
|
||
### Who should be involved? | ||
|
||
Implementer: | ||
Commenters: | ||
Users: | ||
Reviewers: | ||
Users: | ||
Reviewers: | ||
|
||
### Risk | ||
|
||
*Will this potentially break anything?* | ||
<!--Will this potentially break anything?--> | ||
|
||
#### Tests | ||
<!--What are relevant tests or what tests need to be created in order to determine that this issue is complete?--> | ||
|
||
- [ ] Test for... | ||
|
||
|
||
*What are relevant tests or what tests need to be created in order to determine that this issue is complete?* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Publish docs | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
mkdocs: | ||
name: Publish docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Deploy docs | ||
uses: mhausenblas/mkdocs-deploy-gh-pages@master | ||
env: | ||
REQUIREMENTS: docs/requirements.txt | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# This workflow will upload a Python Package using Twine when a release is created | ||
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | ||
|
||
name: Upload Python Package | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
|
||
deploy: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.7' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel twine | ||
- name: Build and publish | ||
env: | ||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | ||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | ||
run: | | ||
python setup.py sdist bdist_wheel | ||
twine upload dist/* |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Release Planning Milestone | ||
|
||
on: | ||
milestone: | ||
types: | ||
- created | ||
|
||
jobs: | ||
create_issue: | ||
name: Create Full Test with Emme Issue | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
MILESTONE: ${{ github.event.milestone.number }} | ||
steps: | ||
- name: Create Full Test with Emme Issue | ||
uses: imjohnbo/issue-bot@3daae12aa54d38685d7ff8459fc8a2aee8cea98b | ||
with: | ||
assignees: "flaviatsang" | ||
labels: "test-run" | ||
title: "Run Full Emme Tests for $MILESTONE" | ||
body: | | ||
### Checklist | ||
- [ ] Run full tests with Emme environment installed | ||
- [ ] Generate bug issues for any failing tests | ||
- [ ] Update any relevant EmmeMock output | ||
milestone: $MILESTONE | ||
pinned: false | ||
close-previous: false | ||
|
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
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
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
Oops, something went wrong.