Skip to content

fix: don't merge this #4871

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

Closed
wants to merge 5 commits into from
Closed
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
13 changes: 10 additions & 3 deletions .github/workflows/docs-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,11 @@ on:
- main

permissions:
actions: none
checks: none
contents: read
deployments: none
issues: none
packages: none
pull-requests: write
repository-projects: none
security-events: none
statuses: none

Expand All @@ -26,6 +23,16 @@ jobs:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.9.1

- name: Check secrets presence
id: checksecrets
shell: bash
run: |
if [ "$READONLY_M_DEPLOY_KEY" == "" ]; then
echo "oh no it is false"
else
echo "it is set and not an empty string"
fi

- name: Checkout m
uses: actions/checkout@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,5 @@ positions](https://coder.com/careers#openings)!

Want remote development for your organization or enterprise? Visit [our
website](https://coder.com) to learn more about Coder.

woot woot