-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove deployments (notify with comments again)
- Loading branch information
Showing
2 changed files
with
122 additions
and
62 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 |
---|---|---|
|
@@ -26,7 +26,7 @@ on: | |
|
||
permissions: | ||
contents: read | ||
deployments: write | ||
# deployments: write | ||
pull-requests: write | ||
statuses: write | ||
issues: write | ||
|
@@ -35,41 +35,41 @@ jobs: | |
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: get pull request ref | ||
id: get_pull_request_ref | ||
uses: octokit/[email protected] | ||
with: | ||
route: GET /repos/:repository/pulls/:issue_id | ||
repository: ${{ github.repository }} | ||
issue_id: ${{ github.event.number }} | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
# - name: get pull request ref | ||
# id: get_pull_request_ref | ||
# uses: octokit/[email protected] | ||
# with: | ||
# route: GET /repos/:repository/pulls/:issue_id | ||
# repository: ${{ github.repository }} | ||
# issue_id: ${{ github.event.number }} | ||
# env: | ||
# GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: create deployment | ||
id: create_deployment | ||
uses: octokit/[email protected] | ||
with: | ||
route: POST /repos/:repository/deployments | ||
repository: ${{ github.repository }} | ||
ref: ${{ github.event.pull_request.base.ref }} | ||
environment: dev | ||
auto_merge: false | ||
required_contexts: "[]" | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
# - name: create deployment | ||
# id: create_deployment | ||
# uses: octokit/[email protected] | ||
# with: | ||
# route: POST /repos/:repository/deployments | ||
# repository: ${{ github.repository }} | ||
# ref: ${{ github.event.pull_request.base.ref }} | ||
# environment: dev | ||
# auto_merge: false | ||
# required_contexts: "[]" | ||
# env: | ||
# GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: set deployment status to in progress | ||
id: start_deployment | ||
uses: octokit/[email protected] | ||
with: | ||
route: POST /repos/:repository/deployments/:deployment/statuses | ||
repository: ${{ github.repository }} | ||
deployment: ${{ fromJson(steps.create_deployment.outputs.data).id }} | ||
environment: dev | ||
log_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
state: in_progress | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
# - name: set deployment status to in progress | ||
# id: start_deployment | ||
# uses: octokit/[email protected] | ||
# with: | ||
# route: POST /repos/:repository/deployments/:deployment/statuses | ||
# repository: ${{ github.repository }} | ||
# deployment: ${{ fromJson(steps.create_deployment.outputs.data).id }} | ||
# environment: dev | ||
# log_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
# state: in_progress | ||
# env: | ||
# GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
# deployment goes here | ||
- name: Checkout | ||
|
@@ -87,35 +87,35 @@ jobs: | |
- name: Remove pdfs (filesize restraints) | ||
run: rm _site/pdfs/*.pdf | ||
- name: deploy to surge | ||
run: npm run surge -- --token "${{ secrets.SURGE_TOKEN }}" --domain liputenpotest-${{ github.event.number }}.surge.sh | ||
run: npm run surge -- --token "${{ secrets.SURGE_TOKEN }}" --domain liputenpotest-${{ github.event.number }}.surge.sh | ||
|
||
- name: set deployment status to success | ||
id: successful_deployment | ||
uses: octokit/[email protected] | ||
with: | ||
route: POST /repos/:repository/deployments/:deployment/statuses | ||
repository: ${{ github.repository }} | ||
deployment: ${{ fromJson(steps.create_deployment.outputs.data).id }} | ||
environment: dev | ||
environment_url: https://liputenpotest-${{ github.event.number }}.surge.sh | ||
log_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
state: success | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
# - name: set deployment status to success | ||
# id: successful_deployment | ||
# uses: octokit/[email protected] | ||
# with: | ||
# route: POST /repos/:repository/deployments/:deployment/statuses | ||
# repository: ${{ github.repository }} | ||
# deployment: ${{ fromJson(steps.create_deployment.outputs.data).id }} | ||
# environment: dev | ||
# environment_url: https://liputenpotest-${{ github.event.number }}.surge.sh | ||
# log_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
# state: success | ||
# env: | ||
# GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: set deployment status to failure | ||
id: failed_deployment | ||
uses: octokit/[email protected] | ||
if: failure() | ||
with: | ||
route: POST /repos/:repository/deployments/:deployment/statuses | ||
repository: ${{ github.repository }} | ||
deployment: ${{ fromJson(steps.create_deployment.outputs.data).id }} | ||
environment: dev | ||
log_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
state: failure | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
# - name: set deployment status to failure | ||
# id: failed_deployment | ||
# uses: octokit/[email protected] | ||
# if: failure() | ||
# with: | ||
# route: POST /repos/:repository/deployments/:deployment/statuses | ||
# repository: ${{ github.repository }} | ||
# deployment: ${{ fromJson(steps.create_deployment.outputs.data).id }} | ||
# environment: dev | ||
# log_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
# state: failure | ||
# env: | ||
# GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
# - name: Send confirmation | ||
# id: send_confirmation | ||
|
@@ -124,6 +124,36 @@ jobs: | |
# route: POST /repos/:repository/issues/:issue_id/comments | ||
# repository: ${{ github.repository }} | ||
# issue_id: ${{ github.event.number }} | ||
# body: "deployed to <https://liputenpotest-${{ github.event.number }}.surge.sh>" | ||
# body: "surge: deployed to <https://liputenpotest-${{ github.event.number }}.surge.sh>" | ||
# env: | ||
# GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: Find Comment | ||
uses: peter-evans/find-comment@v1 | ||
id: fc | ||
with: | ||
issue-number: ${{ github.event.pull_request.number }} | ||
comment-author: "github-actions[bot]" | ||
body-includes: "surge: " | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: Create comment | ||
if: steps.fc.outputs.comment-id == '' | ||
uses: peter-evans/create-or-update-comment@v1 | ||
with: | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: | | ||
surge: deployed to <https://liputenpotest-${{ github.event.number }}.surge.sh> | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: Update comment | ||
if: steps.fc.outputs.comment-id != '' | ||
uses: peter-evans/create-or-update-comment@v1 | ||
with: | ||
comment-id: ${{ steps.fc.outputs.comment-id }} | ||
body: | | ||
surge: deployed to <https://liputenpotest-${{ github.event.number }}.surge.sh> | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |