File tree Expand file tree Collapse file tree 6 files changed +124
-53
lines changed
Expand file tree Collapse file tree 6 files changed +124
-53
lines changed Original file line number Diff line number Diff line change 1+ ** Title**
2+
3+ ** Environment**
4+
5+ - Python Version:
6+ - msgraph-sdk version:
7+ - OS:
8+
9+ ** Stack trace (if available)**
10+ Screenshot or ` formatted ` copy and paste of your stack trace.
11+
12+ ** Describe the bug**
13+ A clear and concise description of what the bug is.
14+
15+ ** To Reproduce**
16+ Steps to reproduce the behavior:
17+
18+ ** Expected behavior**
19+ A clear and concise description of what you expected to happen.
20+
21+ ** Screenshots**
22+ If applicable, add screenshots to help explain your problem.
23+
24+ ** Additional context**
25+ Add any other context about the problem here.
Original file line number Diff line number Diff line change 1+ ---
2+ name : Feature request
3+ about : Suggest a feature for this project
4+ title : ' '
5+ labels : enhancement
6+ assignees : ' '
7+
8+ ---
9+
10+ ** Is your feature request related to a problem? Please describe.**
11+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [ ...]
12+
13+ ** Describe the solution you'd like**
14+ A clear and concise description of what you want to happen.
15+
16+ ** Describe alternatives you've considered**
17+ A clear and concise description of any alternative solutions or features you've considered.
18+
19+ ** Additional context**
20+ Add any other context or screenshots about the feature request here.
Original file line number Diff line number Diff line change 1+ name : Build and validate generated code
2+
3+ on :
4+ workflow_dispatch :
5+ workflow_call :
6+ push :
7+ branches : [ main ]
8+ pull_request :
9+ branches : [ main, dev ]
10+
11+ permissions :
12+ contents : read
13+
14+ jobs :
15+ validate :
16+ name : Validate code accuracy
17+ runs-on : ubuntu-latest
18+ steps :
19+ - uses : actions/checkout@v4
20+ - name : Set up Python
21+ uses : actions/setup-python@v5
22+ with :
23+ python-version : ' 3.12'
24+ - name : Install dependencies
25+ run : |
26+ python -m pip install --upgrade pip
27+ pip install -r requirements-dev.txt
28+ - name : Lint with Pylint
29+ run : pylint msgraph --disable=W --rcfile=.pylintrc
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Publish package to PyPI and create release
2+
3+ on :
4+ push :
5+ branches : [main]
6+ tags :
7+ - " v*" # Push events to matching v*, i.e. v1.0, v20.15.10
8+
9+ jobs :
10+ build :
11+ uses : ./.github/workflows/build.yml
12+
13+ publish :
14+ name : Publish distribution to PyPI
15+ runs-on : ubuntu-latest
16+ if : startsWith(github.ref, 'refs/tags/v')
17+ environment : pypi_prod
18+ needs : [build]
19+ steps :
20+ - name : Checkout code
21+ uses : actions/checkout@v4
22+ - name : Set up Python
23+ uses : actions/setup-python@v5
24+ with :
25+ python-version : 3.12
26+ - name : Install flit
27+ run : |
28+ pip install flit
29+ - name : Publish the distibution to PyPI
30+ run : flit publish
31+ env :
32+ FLIT_INDEX_URL : https://upload.pypi.org/legacy/
33+ FLIT_USERNAME : __token__
34+ FLIT_PASSWORD : ${{ secrets. PYPI_API_TOKEN }}
35+
36+ release :
37+ name : Create release
38+ runs-on : ubuntu-latest
39+ needs : [publish]
40+ steps :
41+ - name : Checkout
42+ uses : actions/checkout@v4
43+ - name : Extract release notes
44+ id : extract-release-notes
45+ uses : ffurrer2/extract-release-notes@v1
46+ - name : Create release
47+ env :
48+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
49+ run : gh release create --notes '${{ steps.extract-release-notes.outputs.release_notes }}' --title ${{ github.ref_name }} ${{ github.ref_name }}
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ microsoft-kiota-authentication-azure==1.0.0
100100
101101microsoft-kiota-http == 1.2.0
102102
103- microsoft-kiota-serialization-json == 1.0.0
103+ microsoft-kiota-serialization-json == 1.0.1
104104
105105microsoft-kiota-serialization-text == 1.0.0
106106
You can’t perform that action at this time.
0 commit comments