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: Up and Down Script for BitBucket Plugin v1.0.0 #4949

Merged
merged 26 commits into from
Jun 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
20205d4
added the sql of bitbucket runner plugin
vishu247 Apr 16, 2024
23538cd
Update 239_bitbucket_runner_plugin.down.sql
vishu247 Apr 17, 2024
45d73c8
Update 239_bitbucket_runner_plugin.down.sql
vishu247 Apr 17, 2024
13156f9
bitbucket_runner_plugin.up.sql
vishu247 May 1, 2024
37e5793
Update 239_bitbucket_runner_plugin.up.sql
vishu247 May 1, 2024
4b8f8a3
bitbucket_runner_plugin.up.sql
vishu247 May 1, 2024
dc5c7a8
bitbucket_runner_plugin.up.sql
vishu247 May 1, 2024
8e5d375
bitbucket_runner_plugin.up.sql
vishu247 May 1, 2024
a090b41
update the sql script
vishu247 May 1, 2024
e2d5d3d
bitbucket_runner_plugin.down.sql
vishu247 May 2, 2024
91ddd84
added the logo of the bitbucket plugin
vishu247 May 16, 2024
07484a4
rename the logo name
vishu247 May 16, 2024
f654fd6
Delete assets/bitbucket.jpeg
vishu247 May 16, 2024
38c3c00
update the migration number
vishu247 May 31, 2024
2b5298d
update the migration number
vishu247 May 31, 2024
4dfb655
change the variable name workspaceName, branchName and repoName
vishu247 Jun 10, 2024
2241206
change the migration number
vishu247 Jun 14, 2024
dbfb5c1
change the migration number
vishu247 Jun 14, 2024
389d595
Rename bitbucket-logo-plugin.jpeg to bitbucket-logo-plugin.jpg
vishu247 Jun 17, 2024
c60034c
Delete assets/bitbucket-logo-plugin.jpg
vishu247 Jun 17, 2024
2878a4e
added bitbucket png image
vishu247 Jun 17, 2024
884d82b
rename the image name
vishu247 Jun 17, 2024
9953719
Rename bitbucket-logo-plugin.png to bitbucket-logo-plugin.jpeg
vishu247 Jun 17, 2024
20c9102
Delete assets/bitbucket-logo-plugin.jpeg
vishu247 Jun 17, 2024
7af7a45
Add files via upload
vishu247 Jun 17, 2024
40493d8
Merge branch 'main' into BitBucketPluginv1.0
prakarsh-dt Jun 17, 2024
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
update the sql script
  • Loading branch information
vishu247 authored May 1, 2024
commit a090b41ace8f89e011a93ccb0f8e8b42fd05f44a
2 changes: 1 addition & 1 deletion scripts/sql/239_bitbucket_runner_plugin.up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ check_healthy_status',
);


INSERT INTO "plugin_step" ("id", "plugin_id","name","description","index","step_type","script_id","deleted", "created_on", "created_by", "updated_on", "updated_by") VALUES (nextval('id_seq_plugin_step'), (SELECT id FROM plugin_metadata WHERE name='BitBucket Runner Trigger v1.0.0'),'Step 1','Step 1 - BitBucket Runner Trigger v1.0.0','1','INLINE',(SELECT last_value FROM id_seq_plugin_pipeline_script),'f','now()', 1, 'now()', 1);
INSERT INTO "plugin_step" ("id", "plugin_id","name","description","index","step_type","script_id","deleted", "created_on", "created_by", "updated_on", "updated_by") VALUES (nextval('id_seq_plugin_step'), (SELECT id FROM plugin_metadata WHERE name='BitBucket Runner Trigger v1.0.0'),'Step 1','BitBucket Runner Trigger v1.0.0','1','INLINE',(SELECT last_value FROM id_seq_plugin_pipeline_script),'f','now()', 1, 'now()', 1);

INSERT INTO plugin_step_variable (id,plugin_step_id,name,format,description,is_exposed,allow_empty_value,default_value,value,variable_type,value_type,previous_step_index,variable_step_index,variable_step_index_in_plugin,reference_variable_name,deleted,created_on,created_by,updated_on,updated_by)
VALUES
Expand Down
Loading