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

feat: add tunnel-timeout flag #37

Merged
merged 4 commits into from
Apr 2, 2024
Merged
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
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/1-bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: '🐛 Bug report'
about: Report a bug found.
title: ''
labels: ''
assignees: ''
---

## The Problem

<!--
Briefly describe the issue you are experiencing.
Tell us what you were trying to do and what happened instead.
-->

## Environment

- Version that exhibits the issue:
- Last version that did not exhibit the issue (if applicable):
- Desktop OS/version:

## Code To Reproduce Issue [ Nice To Have ]

<!--
Please remember that with a code sample it's easier to reproduce the bug,
and it's much faster to fix it.
-->
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: 🤔 Documentation
url: https://docs.saucelabs.com/
about: Before filing an issue, please consult the documentation first. You just might find your answer right there!
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: 🚀 Feature Proposal
about: Submit a proposal for a new feature
---

## 🚀 Feature Proposal

A clear and concise description of what the feature is.

## Motivation

Please outline the motivation for the proposal.

## Example

Please provide an example for how this feature would be used.
7 changes: 7 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Description

<!--
Describe the big picture of your changes here to communicate to the maintainers
why we should accept this pull request. If it fixes a bug or resolves a feature
request, be sure to link to that issue.
-->
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ the `env` field, or you may face an `API rate limit exceeded` error.

# Identifies the Sauce Labs user who created the specified tunnel, which is required if the user running the tests did not create the tunnel.
tunnel-owner: ""

# How long to wait for the specified tunnel to be ready. Supports duration values like '10s', '30m' etc.
tunnel-timeout: 30s

# Specifies a test suite to execute by name rather than all suites defined in the config file.
select-suite: ""
Expand Down
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ inputs:
tunnel-owner:
description: Identifies the Sauce Labs user who created the specified tunnel, which is required if the user running the tests did not create the tunnel.
required: false
tunnel-timeout:
description: How long to wait for the specified tunnel to be ready. Supports duration values like '10s', '30m' etc.
required: false
skip-run:
description: Skip execution of saucectl (only install binary).
default: "false"
Expand Down
Loading
Loading