Skip to content

Commit e2e7516

Browse files
fix: add missing authorize workflow
1 parent b3236e4 commit e2e7516

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/dependabot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ updates:
55
schedule:
66
interval: weekly
77
open-pull-requests-limit: 10
8-
98
groups:
109
patch-deps-updates-main:
1110
update-types:
@@ -16,6 +15,7 @@ updates:
1615
major-deps-updates-main:
1716
update-types:
1817
- "major"
18+
1919
- package-ecosystem: github-actions
2020
directory: "/"
2121
schedule:

.github/workflows/authorize.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build WebdriverIO
2+
3+
on:
4+
workflow_call:
5+
# Make this a reusable workflow, no value needed
6+
# https://docs.github.com/en/actions/using-workflows/reusing-workflows
7+
8+
jobs:
9+
authorize:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: octokit/[email protected]
13+
with:
14+
route: GET /orgs/:organisation/teams/:team/memberships/${{ github.actor }}
15+
team: technical-steering-committee
16+
organisation: webdriverio
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.WDIO_BOT_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)