Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/setup-python from 2 to 4 #3

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
node-version: 16

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: "2.x"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deep-classifier-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
appInsightsKey: ${{secrets.TRIAGE_ACTIONS_APP_INSIGHTS}}
- name: Set up Python 3.7
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install dependencies
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

name: Sync VSCode fork

on:
workflow_dispatch:
schedule:
- cron: "0 13 * * 1"

jobs:
sync:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Sync and merge upstream repository with your current repository
# You may pin to the exact commit or the version.
# uses: dabreadman/sync-upstream-repo@fc5fe9952946b1daaafd9abd7fcd7e260b81ddbe
uses: dabreadman/[email protected]
with:
# URL of gitHub public upstream repo
upstream_repo: https://github.com/microsoft/vscode
# Branch to merge from upstream (defaults to downstream branch)
upstream_branch: main
# Branch to merge into downstream
downstream_branch: main
# GitHub Bot token
token: ${{ secrets.GITHUB_TOKEN }}