Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
6bc69d7
remove mentions of GitHub ONE
mchammer01 Apr 8, 2021
47e5128
Merge branch 'main' into 4169-remove-github-one
mchammer01 Apr 8, 2021
4b36a1e
fix incorrect punctuationW
mchammer01 Apr 8, 2021
bb53099
Merge branch '4169-remove-github-one' of github.com:github/docs-inter…
mchammer01 Apr 8, 2021
634d3d5
remove hardcoded instances
mchammer01 Apr 8, 2021
58189f3
Merge branch 'main' into 4169-remove-github-one
mchammer01 Apr 8, 2021
8c1fd04
removing github insights reusable and references to it per https://gi…
timeyoutakeit Apr 9, 2021
5fe8bd9
Merge branch 'main' into 4169-remove-github-one
timeyoutakeit Apr 9, 2021
bcac786
Merge branch 'main' into 4169-remove-github-one
timeyoutakeit Apr 9, 2021
b1b21fd
removing variable and replacing with term as this is the only referen…
timeyoutakeit Apr 9, 2021
cd1119e
removing github one
timeyoutakeit Apr 9, 2021
e8a65db
hydro: allow grouping of response stats by code
mikesurowiec Apr 10, 2021
d46428d
repo sync
Octomerger Apr 12, 2021
e04ede2
Merge branch 'main' into 4169-remove-github-one
mchammer01 Apr 12, 2021
a59306d
Clarify advice on changes to translations (#18685)
felicitymay Apr 12, 2021
ea31ef4
repo sync
Octomerger Apr 12, 2021
f045337
reinstate variable product name and insights reusable
mchammer01 Apr 12, 2021
a11906e
reinstate old (live) site-policy articles
mchammer01 Apr 12, 2021
6eef0aa
reinstate in original location
mchammer01 Apr 12, 2021
45b79fb
Merge branch 'main' into 4169-remove-github-one
mchammer01 Apr 12, 2021
eb1ab1b
No How We Work automation for github/docs (#18697)
chiedo Apr 12, 2021
4117c67
Merge branch 'main' into 4169-remove-github-one
mchammer01 Apr 12, 2021
e5400a0
Merge pull request #18638 from github/4169-remove-github-one
mchammer01 Apr 12, 2021
ba8aa85
Merge branch 'main' into fix-hydro-event-tags
mikesurowiec Apr 12, 2021
8af652f
Merge pull request #18693 from github/fix-hydro-event-tags
mikesurowiec Apr 12, 2021
504193f
Use official auto-merge for repo-sync PRs (attempt #2) (#18628)
JamesMGreene Apr 12, 2021
35c76c5
Branch was updated using the 'autoupdate branch' Actions workflow.
Octomerger Apr 12, 2021
37cd5e6
repo sync
Octomerger Apr 12, 2021
86cf41e
repo sync
Octomerger Apr 12, 2021
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
Prev Previous commit
Next Next commit
No How We Work automation for github/docs (github#18697)
Co-authored-by: chiedo <[email protected]>
  • Loading branch information
chiedo and chiedo authored Apr 12, 2021
commit eb1ab1bfce1dbed83a735633cacb634b2c631358
6 changes: 3 additions & 3 deletions .github/workflows/send-issues-to-how-how-we-work-boards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- if: contains(github.event.issue.labels.*.name, 'engineering') && !contains(github.event.issue.labels.*.name, 'feature') && !contains(github.event.issue.labels.*.name, 'epic')
- if: (github.repository == 'github/docs-internal') && contains(github.event.issue.labels.*.name, 'engineering') && !contains(github.event.issue.labels.*.name, 'feature') && !contains(github.event.issue.labels.*.name, 'epic')
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
with:
github-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
Expand All @@ -31,7 +31,7 @@ jobs:
} catch (error) {
console.log(error);
}
- if: contains(github.event.issue.labels.*.name, 'engineering') && contains(github.event.issue.labels.*.name, 'feature')
- if: (github.repository == 'github/docs-internal') && contains(github.event.issue.labels.*.name, 'engineering') && contains(github.event.issue.labels.*.name, 'feature')
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
with:
github-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
Expand All @@ -46,7 +46,7 @@ jobs:
} catch (error) {
console.log(error);
}
- if: contains(github.event.issue.labels.*.name, 'engineering') && contains(github.event.issue.labels.*.name, 'epic')
- if: (github.repository == 'github/docs-internal') && contains(github.event.issue.labels.*.name, 'engineering') && contains(github.event.issue.labels.*.name, 'epic')
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
with:
github-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/send-prs-to-how-how-we-work-boards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- if: (github.repository == 'github/docs-internal' || github.repository == 'github/docs') && contains(github.event.pull_request.labels.*.name, 'feature')
- if: (github.repository == 'github/docs-internal') && contains(github.event.pull_request.labels.*.name, 'feature')
uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9
with:
github-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
Expand Down