You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 12, 2025. It is now read-only.
name: Adjust permissions for simple upload server folder
52
+
integration_test_cleanup:
53
+
steps:
53
54
- save_cache:
54
55
key: starwars-server
55
56
paths:
56
57
- ../starwars-server
57
-
58
+
common_test_setup:
59
+
description: Commands to run for setup of every set of tests
60
+
steps:
61
+
- checkout
62
+
- run:
63
+
command: rm ~/.ssh/id_rsa
64
+
name: Remove old SSH key
65
+
- run:
66
+
command: for ip in $(dig @8.8.8.8 bitbucket.org +short); do ssh-keyscan bitbucket.org,$ip; ssh-keyscan $ip; done 2>/dev/null >> ~/.ssh/known_hosts || true
67
+
name: Bitbucket Key Workaround
68
+
- run:
69
+
command: for ip in $(dig @8.8.8.8 github.com +short); do ssh-keyscan github.com,$ip; ssh-keyscan $ip; done 2>/dev/null >> ~/.ssh/known_hosts || true
about: Use this template for submitting bug reports.
4
+
---
5
+
6
+
## Bug report
7
+
8
+
Please replace this line with a short description of the problem. Make sure you've read `CHANGELOG.md` in the root of the repo to make sure a new version hasn't already addressed your problem!
9
+
10
+
## Versions
11
+
12
+
Please fill in the versions you're currently using:
13
+
14
+
-`apollo-ios` SDK version:
15
+
- Xcode version:
16
+
- Swift version:
17
+
- Package manager:
18
+
19
+
## Steps to reproduce
20
+
21
+
Please replace this line with steps to reproduce the problem.
22
+
23
+
## Further details
24
+
25
+
Please replace this line with any further details or context necessary to understand the problem. Delete this section if you don't have anything further to add.
about: Use this template for requesting new features or significant changes to existing features.
4
+
---
5
+
6
+
7
+
## Feature request
8
+
9
+
Please replace this line with a short description of the feature you're requesting.
10
+
11
+
## Motivation
12
+
13
+
Please replace this line with an explanation for why you would like this feature added.
14
+
15
+
## Proposed solution
16
+
17
+
Please replace this line with any proposed solution you have already started to work on. Delete this section if you don't have a proposed solution.
18
+
19
+
## Outstanding Questions
20
+
21
+
Please replace this line with any known question marks around how your feature would work. Delete this section if you don't have any outstanding questions.
about: Please don't use issues to ask questions, use our forums instead.
4
+
labels: question
5
+
---
6
+
7
+
8
+
## Question
9
+
10
+
Before you ask, check a few things to see if there might already be an answer:
11
+
12
+
-[`CHANGELOG.md`](https://github.com/apollographql/apollo-ios/blob/main/CHANGELOG.md) has all the most recent changes
13
+
- We have [extensive documentation available](https://www.apollographql.com/docs/ios) (though we're always looking for ways to improve it!)
14
+
15
+
16
+
If neither of those have an answer for you, we have [community forums](https://community.apollographql.com) where our users can ask and answer questions - head on over there rather than opening an issue here please!
17
+
18
+
## Seriously
19
+
20
+
Use the [community forums](https://community.apollographql.com) for questions, please! 😇
0 commit comments